diff options
author | Nico <NicoHood@users.noreply.github.com> | 2015-09-20 11:04:42 +0200 |
---|---|---|
committer | Nico <NicoHood@users.noreply.github.com> | 2015-09-20 11:04:42 +0200 |
commit | 6153b93907d53f032abd1deeb7e33a1cbaa680d9 (patch) | |
tree | 8573ca9dfe49be651a60f6576a2d8210c4373410 /libraries/HID/HID.cpp | |
parent | e4f0bb22dac44b727ec6dd148f57ad4ef63b45cf (diff) |
Remove Raw HID definitions at wrong place
Diffstat (limited to 'libraries/HID/HID.cpp')
-rw-r--r-- | libraries/HID/HID.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libraries/HID/HID.cpp b/libraries/HID/HID.cpp index c629eb9..c5954ed 100644 --- a/libraries/HID/HID.cpp +++ b/libraries/HID/HID.cpp @@ -27,16 +27,7 @@ static u8 HID_ENDPOINT_INT; //================================================================================ //================================================================================ - -// HID report descriptor - -#define LSB(_x) ((_x) & 0xFF) -#define MSB(_x) ((_x) >> 8) - -#define RAWHID_USAGE_PAGE 0xFFC0 -#define RAWHID_USAGE 0x0C00 -#define RAWHID_TX_SIZE 64 -#define RAWHID_RX_SIZE 64 +// HID Interface static u8 HID_INTERFACE; |