.Net CF 2.0. Does it support ARM cpu?

  • Thread starter Thread starter benru.liao
  • Start date Start date
B

benru.liao

..Net CF 2.0. Does it support ARM cpu?


Did anyone ever try System.IO.SerialPort in WindowsCE 5.0?
I have upgraded the platform builder 5.0 to supoort CF2.0.

It works nice on win2000, winxp...
but ....why its different in wince 5.0?


------------------------ below is the debug messages ..
After I run the program.


Dim ports As String() = SerialPort.GetPortNames()
Dim port As String
For Each port In ports
Console.WriteLine(port)
Next port


-------------------------------------------------------------------------



0x87ba5800: InitSharedHeap: 4a200000 0 c
0x87ba5800: InitSharedHeap: return 4a200060
0x87ba5800: +OEMIoControl: IOCTL_HAL_GET_DEVICE_INFO
0x87ba5800: AddToProcessInputLocaleTable: Added process to
ProcessInputLocale table, hProcess = 0x27BA5B5E
0x87ba5800: +OEMIoControl: IOCTL_HAL_GET_DEVICE_INFO
0x87ba5800: DlgMgr: FindDlgItem id 1 returning NULL.
Info: AfxDllCanUnloadNow returning S_OK


------------------------------------------------


Finally!! The program dead . i have to kill it manually..


Help please..
 
Yes. All Pocket PC's are ARM, so a vast majority of devices runnign CF apps
are ARM-based.

Do you get an exception? Do you get any return? I've run CF 2.0 on CE 5.0
ARM devices with no problem, though I admit I've not tried the serial port
stuff since all the code I'm using uses the OpenNETCF code and there's no
point in changing what works.

-Chris
 
Back
Top