embedded - Consuming a USB HID device in Windows CE 6.0 using c# -
I am working on embedded Windows CE project and accessing a USB HID device through one of the USB host ports I'm interested in I really need to read all the raw hidden wheel packets on the windows computer, I have a program using hid.dll, but as far as I've researched, there is no equivalent on the CE. I know that usbhid.dll is but I'm not sure that it is applicable to this situation. I do not like to write kernel level drivers because I want to do my coding in C #. Does anyone have the experience of consuming HID devices on Windows CE?
I have no concrete experience with hiding, but USB port as a COM port You may be able to access the appropriate driver with DLL (device maker may have). In principle, you should be able to get the device's raw data packet with SerialPort
class .
Comments
Post a Comment