diff options
author | Cristian Maglie <c.maglie@arduino.cc> | 2015-09-30 20:53:05 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-10-02 11:59:23 +0200 |
commit | 10512b3f9b2e30759d08af77960ab0ead539a055 (patch) | |
tree | 464d1ffe584a5d95fdf2434edb7b9144712e5b95 /libraries | |
parent | cabae13e55b8e6de88a3aee452a66a1e2a8c352b (diff) |
[USB] Fixed some compiler warnings
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)) |