diff options
author | Martino Facchin <m.facchin@arduino.cc> | 2015-06-05 17:33:38 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-07-16 13:12:13 +0200 |
commit | ea2a4215707ae69c71c1990d5b0f72ff077e3c46 (patch) | |
tree | e55bb12b67572ebc4348808ff3d4dc3afbe8e74a /cores/arduino/USBCore.h | |
parent | e798ff32b7297127eaa8b4fac2d45ebbe9cc21d4 (diff) |
Remove HID core library
Diffstat (limited to 'cores/arduino/USBCore.h')
-rw-r--r-- | cores/arduino/USBCore.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/cores/arduino/USBCore.h b/cores/arduino/USBCore.h index 8d13806..bee5a3e 100644 --- a/cores/arduino/USBCore.h +++ b/cores/arduino/USBCore.h @@ -257,26 +257,6 @@ typedef struct EndpointDescriptor out; } MSCDescriptor; -typedef struct -{ - u8 len; // 9 - u8 dtype; // 0x21 - u8 addr; - u8 versionL; // 0x101 - u8 versionH; // 0x101 - u8 country; - u8 desctype; // 0x22 report - u8 descLenL; - u8 descLenH; -} HIDDescDescriptor; - -typedef struct -{ - InterfaceDescriptor hid; - HIDDescDescriptor desc; - EndpointDescriptor in; -} HIDDescriptor; - #define D_DEVICE(_class,_subClass,_proto,_packetSize0,_vid,_pid,_version,_im,_ip,_is,_configs) \ { 18, 1, 0x200, _class,_subClass,_proto,_packetSize0,_vid,_pid,_version,_im,_ip,_is,_configs } @@ -293,9 +273,6 @@ typedef struct #define D_IAD(_firstInterface, _count, _class, _subClass, _protocol) \ { 8, 11, _firstInterface, _count, _class, _subClass, _protocol, 0 } -#define D_HIDREPORT(_descriptorLength) \ - { 9, 0x21, 0x1, 0x1, 0, 1, 0x22, _descriptorLength, 0 } - #define D_CDCCS(_subtype,_d0,_d1) { 5, 0x24, _subtype, _d0, _d1 } #define D_CDCCS4(_subtype,_d0) { 4, 0x24, _subtype, _d0 } |