2

我正在尝试在 Windows 7 下为键盘(HID,如果重要的话)编写自定义“驱动程序”。最终目标是将两个键盘连接到计算机,但将其中一个键盘的所有键映射到特殊(自定义)函数。

我的想法是使用 libusb-win32 作为第二个键盘的驱动程序,并编写一个小程序从键盘读取数据并对其进行操作。我已经成功安装了驱动程序,并且可以从我的程序中识别出该设备,但是所有传输都超时,即使我正在按键。

这是我的代码:

     struct usb_bus *busses;
     struct usb_device *dev;
     char buf[1024];

     usb_init();
     usb_find_busses();
     usb_find_devices();

     busses = usb_get_busses();
     dev = busses->devices;

     cout << dev->descriptor.idVendor << '\n' << dev->descriptor.idProduct << '\n';

     usb_dev_handle *h = usb_open(dev);
     cout << usb_set_configuration(h, 1) << '\n';
     cout << usb_claim_interface(h, 0) << '\n';
     cout << usb_interrupt_read(h, 129, buf, 1024, 5000) << '\n';
     cout << usb_strerror();
     cout << usb_release_interface(h, 0) << '\n';
     cout << usb_close(h) << '\n';

它返回:

  1133
  49941
  0
  0
  -116
  libusb0-dll:err [_usb_reap_async] timeout error
  0
  0

(我在那 5 秒内按了很多键)

只有一个总线、一个设备、一个配置、一个接口和一个端点。端点bmAttributes = 3意味着我应该使用中断传输(对吗?)

那为什么我什么也得不到?我在滥用 libusb 吗?你知道没有 libusb 的方法吗?

4

1 回答 1

4

实际上非常简单 - 从 USB 设备读取时,您必须读取正确数量的字节。你通过阅读就知道这个数量是多少wMaxPacketSize

显然,任何其他大小的读取请求只会导致超时。

于 2012-01-11T17:14:48.630 回答