mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-20 14:54:31 +01:00
[HID] fixed wrong datatype for descriptor len
See https://github.com/arduino/Arduino/pull/3840/files#r40438845
This commit is contained in:
parent
e4d63adf45
commit
fba6ca88ed
@ -46,7 +46,7 @@ class HIDDescriptorListNode {
|
||||
public:
|
||||
HIDDescriptorListNode *next = NULL;
|
||||
HIDDescriptorListNode(const void *d, uint16_t l) : data(d), length(l) { }
|
||||
uint8_t length;
|
||||
uint16_t length;
|
||||
const void* data;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user