Displaying 2 results from an estimated 2 matches for "5bits".
Did you mean:
bits
2018 Feb 16
0
[PATCH 1/3] Skip non-feature HID reports
...tocol 1 (Keyboard)" then there's an example of a HID
report descriptor that contains both input and output items, using
the same report ID and the corresponding reports and their lengths.
The descriptor defines items in a single report in the order of
input (8bits), input (8bits), output (5bits), input (8bits).
The corresponding report examples given show that an input report
_only_ contains the input items, and the output report _only_
cotnains the output items.
So, in this case, the first input item would be located in the input
report at data offset 0, and the first output item would...
2018 Feb 15
2
[PATCH 1/3] Skip non-feature HID reports
On Feb 3, 2018, at 7:19 PM, Russell King wrote:
>
> Input and Output reports are used for interrupt endpoints rather than
> control endpoints. HIDGetItemData() only ever requests feature
> report IDs, and requesting non-feature report IDs as feature IDs may
> lead to undesirable results and errors.
This one made me scratch my head a bit.
I don't think it's unreasonable