Re: HID Report by Randy
Randy
Thu Jul 31 19:48:09 CDT 2003
Yes, your report can be larger than 8 bytes. The only restriction for HID
reports is that their size must be a multiple of 1 byte (i.e. it can't be 13
bits). The only issue would be that it will take you longer to get the data
since you have to wait for multiple USB packets.
Report ID doesn't have anything to do with the size of the report. It is
mainly if you actually have different reports that you may send.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"dmitri" <info@maxcargo.com> wrote in message
news:56c501c35737$953126b0$a001280a@phx.gbl...
> Maximum packet size for low speed devices over interrupt
> endpoint is 8 bytes. Can I use reports longer than 8
> bytes? How do I have to format such reports? Can I use
> report ID field for such long reports ?
>
> Thanks.