14 lines
303 B
C
14 lines
303 B
C
#ifndef __USB_DESCRIPTOR_KEYBOARD_REPORT_H__
|
|
#define __USB_DESCRIPTOR_KEYBOARD_REPORT_H__
|
|
|
|
// Macros:
|
|
|
|
#define USB_KEYBOARD_REPORT_DESCRIPTOR_LENGTH 63
|
|
#define USB_KEYBOARD_MAX_KEYS 6
|
|
|
|
// Variables:
|
|
|
|
extern uint8_t UsbKeyboardReportDescriptor[USB_KEYBOARD_REPORT_DESCRIPTOR_LENGTH];
|
|
|
|
#endif
|