摘要: 主要是在前一篇的基础上,学习libusb-win32的API使用。程序很简单,就是打印指定USB设备的设备描述符(当然其他描述符也是可以的)。 1 #include "testlibusb.h" 2 3 4 #define MY_VID 0x5345 5 #define MY_PID 0x1234 6 7 8 USB::USB() 9 {10 usb_init(); /* initialize the library */11 //usb_set_debug(255);12 usb_find_busses(); /* find all busses */1... 阅读全文
posted @ 2013-07-15 20:25 lknlfy 阅读(4319) 评论(0) 推荐(0) 编辑