Content originally posted in LPCWare by omerkarakucuk on Tue Nov 27 16:09:45 MST 2012
Quote: Tsuneo
You may assign a generic driver, like WinUSB, libusb(-win32), to your CDC device.
On Windows, edit the "standard" INF file of these drivers, so that the INF specifies the VID/PID of your device. That's all.
Ah, CDC driver on PC always polls the bulk IN endpoint, to keep asynchronous transfer. Your PC application should keep an asynchronous read call on a generic driver, to emulate this behavior.
Tsuneo
Thx for the help. i dont know how did i missed it. I managed to load libusb as driver and working on reading and writing data to the device.
thanks again.