1 #ifndef HW_USB_HID_H 2 #define HW_USB_HID_H 3 4 /* HID interface requests */ 5 #define HID_GET_REPORT 0xa101 6 #define HID_GET_IDLE 0xa102 7 #define HID_GET_PROTOCOL 0xa103 8 #define HID_SET_REPORT 0x2109 9 #define HID_SET_IDLE 0x210a 10 #define HID_SET_PROTOCOL 0x210b 11 12 /* HID descriptor types */ 13 #define USB_DT_HID 0x21 14 #define USB_DT_REPORT 0x22 15 #define USB_DT_PHY 0x23 16 17 #endif 18