17 #if !defined(__HID_H__)
23 #define DATA_SIZE_MASK 0x03
24 #define TYPE_MASK 0x0C
27 #define DATA_SIZE_0 0x00
28 #define DATA_SIZE_1 0x01
29 #define DATA_SIZE_2 0x02
30 #define DATA_SIZE_4 0x03
32 #define TYPE_MAIN 0x00
33 #define TYPE_GLOBAL 0x04
34 #define TYPE_LOCAL 0x08
36 #define TAG_MAIN_INPUT 0x80
37 #define TAG_MAIN_OUTPUT 0x90
38 #define TAG_MAIN_COLLECTION 0xA0
39 #define TAG_MAIN_FEATURE 0xB0
40 #define TAG_MAIN_ENDCOLLECTION 0xC0
42 #define TAG_GLOBAL_USAGEPAGE 0x00
43 #define TAG_GLOBAL_LOGICALMIN 0x10
44 #define TAG_GLOBAL_LOGICALMAX 0x20
45 #define TAG_GLOBAL_PHYSMIN 0x30
46 #define TAG_GLOBAL_PHYSMAX 0x40
47 #define TAG_GLOBAL_UNITEXP 0x50
48 #define TAG_GLOBAL_UNIT 0x60
49 #define TAG_GLOBAL_REPORTSIZE 0x70
50 #define TAG_GLOBAL_REPORTID 0x80
51 #define TAG_GLOBAL_REPORTCOUNT 0x90
52 #define TAG_GLOBAL_PUSH 0xA0
53 #define TAG_GLOBAL_POP 0xB0
55 #define TAG_LOCAL_USAGE 0x00
56 #define TAG_LOCAL_USAGEMIN 0x10
57 #define TAG_LOCAL_USAGEMAX 0x20
60 #define bmREQ_HIDOUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
61 #define bmREQ_HIDIN USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
62 #define bmREQ_HIDREPORT USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_STANDARD|USB_SETUP_RECIPIENT_INTERFACE
66 #define HID_REQUEST_GET_REPORT 0x01
67 #define HID_REQUEST_GET_IDLE 0x02
68 #define HID_REQUEST_GET_PROTOCOL 0x03
69 #define HID_REQUEST_SET_REPORT 0x09
70 #define HID_REQUEST_SET_IDLE 0x0A
71 #define HID_REQUEST_SET_PROTOCOL 0x0B
74 #define HID_DESCRIPTOR_HID 0x21
75 #define HID_DESCRIPTOR_REPORT 0x22
76 #define HID_DESRIPTOR_PHY 0x23
79 #define HID_BOOT_PROTOCOL 0x00
80 #define HID_RPT_PROTOCOL 0x01
86 #define HID_BOOT_INTF_SUBCLASS 0x01
89 #define HID_PROTOCOL_NONE 0x00
90 #define HID_PROTOCOL_KEYBOARD 0x01
91 #define HID_PROTOCOL_MOUSE 0x02
99 #define HID_ITEM_TYPE_MAIN 0
100 #define HID_ITEM_TYPE_GLOBAL 1
101 #define HID_ITEM_TYPE_LOCAL 2
102 #define HID_ITEM_TYPE_RESERVED 3
104 #define HID_LONG_ITEM_PREFIX 0xfe // Long item prefix value
106 #define bmHID_MAIN_ITEM_TAG 0xfc // Main item tag mask
108 #define bmHID_MAIN_ITEM_INPUT 0x80 // Main item Input tag value
109 #define bmHID_MAIN_ITEM_OUTPUT 0x90 // Main item Output tag value
110 #define bmHID_MAIN_ITEM_FEATURE 0xb0 // Main item Feature tag value
111 #define bmHID_MAIN_ITEM_COLLECTION 0xa0 // Main item Collection tag value
112 #define bmHID_MAIN_ITEM_END_COLLECTION 0xce // Main item End Collection tag value
114 #define HID_MAIN_ITEM_COLLECTION_PHYSICAL 0
115 #define HID_MAIN_ITEM_COLLECTION_APPLICATION 1
116 #define HID_MAIN_ITEM_COLLECTION_LOGICAL 2
117 #define HID_MAIN_ITEM_COLLECTION_REPORT 3
118 #define HID_MAIN_ITEM_COLLECTION_NAMED_ARRAY 4
119 #define HID_MAIN_ITEM_COLLECTION_USAGE_SWITCH 5
120 #define HID_MAIN_ITEM_COLLECTION_USAGE_MODIFIER 6
137 virtual void Parse(
HID *hid,
bool is_rpt_id, uint8_t len, uint8_t *buf) = 0;
140 #define MAX_REPORT_PARSERS 2
141 #define HID_MAX_HID_CLASS_DESCRIPTORS 5
171 uint8_t
SetProtocol(uint8_t iface, uint8_t protocol);
172 uint8_t
GetProtocol(uint8_t iface, uint8_t* dataptr);
173 uint8_t
GetIdle(uint8_t iface, uint8_t reportID, uint8_t* dataptr);
174 uint8_t
SetIdle(uint8_t iface, uint8_t reportID, uint8_t duration);
178 uint8_t
GetHidDescr(uint8_t ep, uint16_t nbytes, uint8_t* dataptr);
179 uint8_t
GetReport(uint8_t ep, uint8_t iface, uint8_t report_type, uint8_t report_id, uint16_t nbytes, uint8_t* dataptr);
180 uint8_t
SetReport(uint8_t ep, uint8_t iface, uint8_t report_type, uint8_t report_id, uint16_t nbytes, uint8_t* dataptr);
uint8_t GetIdle(uint8_t iface, uint8_t reportID, uint8_t *dataptr)
virtual HIDReportParser * GetReportParser(uint8_t id)
uint8_t SetReport(uint8_t ep, uint8_t iface, uint8_t report_type, uint8_t report_id, uint16_t nbytes, uint8_t *dataptr)
uint8_t GetReport(uint8_t ep, uint8_t iface, uint8_t report_type, uint8_t report_id, uint16_t nbytes, uint8_t *dataptr)
uint8_t bmIsConstantOrData
static const uint8_t epInterruptOutIndex
uint8_t GetReportDescr(uint8_t ep, USBReadParser *parser=NULL)
uint8_t bmIsArrayOrVariable
uint8_t GetProtocol(uint8_t iface, uint8_t *dataptr)
uint8_t SetProtocol(uint8_t iface, uint8_t protocol)
uint8_t bmIsVolatileOrNonVolatile
virtual bool SetReportParser(uint8_t id, HIDReportParser *prs)
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)=0
void PrintHidDescriptor(const USB_HID_DESCRIPTOR *pDesc)
uint8_t SetIdle(uint8_t iface, uint8_t reportID, uint8_t duration)
uint8_t bmIsNonLonearOrLinear
static const uint8_t epInterruptInIndex
uint8_t GetHidDescr(uint8_t ep, uint16_t nbytes, uint8_t *dataptr)
uint8_t bmIsNoPreferedOrPrefered
static const uint8_t totalEndpoints
uint8_t bmIsRelativeOrAbsolute
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR *ep_ptr)
static const uint8_t maxEpPerInterface
static const uint8_t maxHidInterfaces