diff options
Diffstat (limited to 'libraries')
| -rw-r--r-- | libraries/HID/HID.h | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/libraries/HID/HID.h b/libraries/HID/HID.h index 9e6e675..f951229 100644 --- a/libraries/HID/HID.h +++ b/libraries/HID/HID.h @@ -98,8 +98,7 @@ private:    uint8_t idle;  }; -#define D_HIDREPORT(_descriptorLength) \ -  { 9, 0x21, 0x1, 0x1, 0, 1, 0x22, _descriptorLength & 0xFF, _descriptorLength >> 8 } +#define D_HIDREPORT(length) { 9, 0x21, 0x01, 0x01, 0, 1, 0x22, lowByte(length), highByte(length) }  #define WEAK __attribute__ ((weak)) | 
