Alan Ott

Results 57 comments of Alan Ott

try the branch at: https://github.com/signal11/hidapi/commits/windows_write_timeout I tested it but I couldn't get the guy I made it for to confirm that it fixed his problem. If it works, I'll get...

Does closing this issue mean that it works with the branch?

try https://github.com/signal11/hidapi/tree/write_timeout_2 and see if that works for you. I now only call GetOverlappedResult() and WaitForSingleObject() if there WriteFile() returns false. I can't test thoroughly right now, but it appears...

I'll merge this into master before closing :)

And what happens when the application crashes or otherwise exits uncleanly? There's no way to ensure that it's ever actually done. HIDAPI is for custom devices. If you have a...

Is winusb now able to communicate with HID devices? Last I was aware, it was not.

winusb, as far as I know, will not open HID devices, even though HID devices are USB. It blocks the opening of HID devices. This was the case last I...

A "device" as reported by hid_enumerate() is really a USB interface. The path points to an interface. This is the same on all platforms.

hmm, so there are two "devices" (interfaces) with the same "path." We need something in the constructed path to differentiate them. Usage is not good enough because they could both...