- /* Type Defines: */\r
- /** Type define for a standard USB control request.\r
- *\r
- * \see StdRequestType.h for information on the request type and data.\r
- * \see The USB 2.0 specification for more information on standard control requests.\r
- */\r
- typedef struct\r
- {\r
- uint8_t bmRequestType; /**< Type of the request. */\r
- uint8_t bRequest; /**< Request command code. */\r
- uint16_t wValue; /**< wValue parameter of the request. */\r
- uint16_t wIndex; /**< wIndex parameter of the request. */\r
- uint16_t wLength; /**< Length of the data to transfer in bytes. */\r
- } USB_Host_Request_Header_t;\r
-\r