본문 바로가기

SoftWare/PDA Programing4

C# WinCE 빌드속도 개선 방법 PC용 프로젝트 빌드는 빠른데 윈도우 모바일용 빌드가 느리다.간단한 수정으로 몇 배 빨라졌다. 1. 비주얼 스튜디오를 닫는다.2. 닷넷프레임워크 경로를 찾는다. C:\WINDOWS\Microsoft.NET\Framework\v3.5\ 3. 파일 Microsoft.CompactFramework.Common.targets를 백업해둔다.4. 파일 Microsoft.CompactFramework.Common.targets의 내용을 편집기로 아래와 같이 수정한다. --------------------------------원본 ------------------------------------------ --------------------------------수정본----------------------------.. 2017. 8. 13.
Windows10 업데이트 후 Windows Mobile Center 실행 안될때 해결 이번 7월 Windows 10 Creators 업데이트 이후 .net Compact Framework 3.5 문제와 Windows Mobile Center 가 실행되지 않는다.. Windows Mobile Center : 아이에 실행이 안되던지 Splash 화면만 나왔다가 사라짐. .Net Compact Framework 3.5 : Visual Studio 에서 잘쓰던 Project 를 열면 오류메세지 나면서프로젝트 로드 안됨.. 아직 Fix Update 는 않나온것 같다.... 1. 제어판에서 Windows Mobile Center 6.1 언인스톨 2. 제어판에서 Windows Mobile Center Driver 언인스톨 3. C:\Windows\WindowsMobile\ 폴더 삭제 만약 사용중이라서.. 2017. 8. 13.
C# PDA Serial통신 우선 제일먼저 해줘야할일은 당연히 Serial Control추가... Program 생성자에 아래코드를 추가해준다.. this.serialPort1.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.serialPort1_DataReceived); dataReciveHandler = new EventHandler(dataRecive); 시리얼 수신 이벤트핸들러함수를 아래와같이 추가한다. protected void serialPort1_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs args) { try { Invoke(dataReciveHandler.. 2009. 5. 15.
PDA Bluetooth로 PC와 Serial통신하기 위의 사진의 ACODE-300 Bluetooth Serial 장비와 PDA를 연결해보자.. 음 저 ACODE-300은 Comfile사에서 구매를 한것이고~ 인터페이스보드는 우리회사에서 PCB뜬거이다~ 접 더럽네 -_-;; PDA Setting - Windows Mobile 6.0 1. ACODE-300 을 MODE3 = 지속적으로 연결 대기상태를 유지 로 맞춰놔야한다... 설정은 Sena Parani-WIN 이였나.. 아무튼 위와같이 셋팅해야한다.. 주의할점이 중간쯤에 보이는 이름.. ESDv3a-1354BE 라는놈을 잘 기억해둬야한다 왜냐면 PDA에서.. 저 이름을 가지고 연결해야하니까~~ 2. PDA에서 Bluetooth 장비 연결 PDA에서 Bluetooth설정 Page이다.. 새장치추가 클릭! 그.. 2009. 5. 15.