usb_hid_desc.h 424 B

12345678910111213141516
  1. #ifndef _USB_HID_DESC_H
  2. #define _USB_HID_DESC_H
  3. #define USB_HID_EP_IN_INDEX 1
  4. #define USB_HID_EP_OUT_INDEX 1
  5. #define HID_EP_IN_MAX_SIZE 5
  6. #define HID_EP_OUT_MAX_SIZE 64
  7. #define HID_REPORT_DESC_SIZE 146 //需要和 desc_hid_report 的长度一致
  8. uint8_t *usb_hid_itf_desc_get(uint8_t *length);
  9. uint8_t *usb_hid_report_desc_get(uint8_t *length);
  10. #endif