Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Dec 2020 15:03:41 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 251784] USB_DO_REQUEST ERR#5 'Input/output error' for 0x0b05:0x18f3 ASUS AURA LED Controller
Message-ID:  <bug-251784-227-rObTYTRm59@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-251784-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-251784-227@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D251784

--- Comment #1 from Greg V <greg@unrelenting.technology> ---
Created attachment 220491
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D220491&action=
=3Dedit
aura-hid.usbdump

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

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

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

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

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-251784-227-rObTYTRm59>