17 lines
352 B
C
17 lines
352 B
C
#ifndef USB_DESCRIPTORS_H_
|
|
#define USB_DESCRIPTORS_H_
|
|
|
|
#include "tusb.h"
|
|
|
|
// Define configuration lengths and buffer sizes manually to satisfy the descriptor structure
|
|
// #define CFG_TUD_HID_EP_BUFSIZE 16
|
|
|
|
enum {
|
|
REPORT_ID_KEYBOARD = 1,
|
|
REPORT_ID_MOUSE,
|
|
REPORT_ID_CONSUMER_CONTROL,
|
|
REPORT_ID_GAMEPAD
|
|
};
|
|
|
|
#endif /* USB_DESCRIPTORS_H_ */
|