-\r
- /* Type Defines: */\r
- /** Type define for the keyboard HID report structure, for creating and sending HID reports to the host PC.\r
- * This mirrors the layout described to the host in the HID report descriptor, in Descriptors.c.\r
- */\r
- typedef struct\r
- {\r
- uint8_t Modifier; /**< Modifier mask byte, containing a mask of modifier keys set (such as shift or CTRL) */\r
- uint8_t Reserved; /**< Reserved, always set as 0x00 */\r
- uint8_t KeyCode[6]; /**< Array of up to six simultaneous key codes of pressed keys */\r
- } USB_KeyboardReport_Data_t;\r