https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251784

--- Comment #1 from Greg V <[email protected]> ---
Created attachment 220491
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=220491&action=edit
aura-hid.usbdump

Same thing with a tiny example using hidraw (https://github.com/wulf7/iichid)
like this:

        int fd = open("/dev/hidraw1", O_RDWR);
        unsigned char usb_buf[65] = {0};
        memset(usb_buf, 0x00, sizeof(usb_buf));

        usb_buf[0x00]   = 0xEC;
        usb_buf[0x01]   = 0x82;

        fprintf(stderr, "wr %ld\n", write(fd, usb_buf, 65));
        fprintf(stderr, "rd %ld\n", read(fd, usb_buf, 65));

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to