Files
pico_rubber_ducky/usb_descriptors.h
2026-06-20 08:54:28 -04:00

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_ */