How to get HID reports using libusb-1.0?

I have a USB HID scale with which I need to receive weighing reports. I can do this on Linux by reading 7 bytes at a time from /dev/hidraw#, but I would like to get the same information using libusb-1.0.

Even when I get a few non-zero bytes, I get a -9 error: LIBUSB_ERROR_PIPE

I am trying to use control transfer like this:

#define WEIGH_REPORT_SIZE 7

    /*
     * Open a handle to the found scale
     */
    libusb_open(dev, &handle);
#ifdef __linux__
    libusb_detach_kernel_driver(handle, 0);
#endif
    libusb_claim_interface(handle, 0);

    /*
     * Try to transfer data about status
     *
     */
    unsigned char data[WEIGH_REPORT_SIZE];
    unsigned int len = libusb_control_transfer(
        handle,
        LIBUSB_ENDPOINT_IN | LIBUSB_REQUEST_TYPE_CLASS |
            LIBUSB_RECIPIENT_INTERFACE,
        HID_REPORT_GET,
        //wValue => hid report, no report ID
        0x0100,
        0x00,   //windex => interface 0
        data,
        WEIGH_REPORT_SIZE,    //wLength
        10000 //timeout => 10 sec
        );
    int i;
    printf("Got %d bytes from control transfer:\n", len);
    for(i = 0; i < WEIGH_REPORT_SIZE; i++) {
        printf("%x\n", data[i]);
    }
+3
source share
3 answers

An example of reading from a USB HID card reader using libusb-win -

http://rowsandcolumns.blogspot.com/2011/02/read-from-magtek-card-swipe-reader-in.html

+3
source

HID AFAIK. , . thouse - , .

, , /dev/hdiraw ​​#, libusb .

+1

Try using a different value for wValue( 0x0300for example).

Also check the parameters bmRequestTypeand bRequest: bmRequestTypeshould be equal 0xA1to bRequest- 0x01.

+1
source

Source: https://habr.com/ru/post/1788838/


All Articles