hidapi icon indicating copy to clipboard operation
hidapi copied to clipboard

need longer timeout with send_feature_report() for libusb under Windows

Open oistra-ah opened this issue 1 year ago • 2 comments

Hi, could please someone give a hint: is it possible to increase timeout for send_feature_report() on Windows? I have the device, which takes a more than 5 sec sometimes for response. Thanks.

oistra-ah avatar Mar 22 '24 13:03 oistra-ah

As of this moment that is not possible.

Theoretically it could have been be possible, but it would require 2 things:

  1. Refactor hid_send_feature_report to switch from HidD_SetFeature to using DeviceIoControl directly;
  2. Introduce new API to specify the timeout.

I have the device, which takes a more than 5 sec sometimes for response.

That is astucally weird from system design POV. If that is your device and you know for a fact that by setting a specific feature your device needs to perform a long-going operation, that is advisable not to perform that action directly during the send_feature_report handling, but rather immediately acknowledge that the operation has started, and send the result later in some async matter (e.g. using the interrupt input report).

Youw avatar Apr 06 '24 09:04 Youw

I any case I don't see much point keeping this ticket opened for now, unless someone volunteers to design the API and implement the change.

Youw avatar Apr 06 '24 09:04 Youw

Hi @Youw , sorry for my late answer. And thanks for the reply.

  1. I understood that this is possible but rather complex. My suspicions confirmed, thanks.
  2. Sys design is weak, agree. And without waiting for your answer I've started to implement async handler)
  3. Thus if nobody minds, you can close the ticket.

oistra-ah avatar Jun 02 '24 08:06 oistra-ah