Fixed HID host Class driver report send/receive report broken when issued through the control pipe.
Make Mass Storage device Class driver accept resets at any time, rather than just after a command block has been processed. Remove the HID device parser from the boot protocol Keyboard/Mouse demos.
This commit is contained in:
parent
4dde844e9f
commit
8bb007f80b
9 changed files with 32 additions and 32 deletions
|
@ -87,6 +87,14 @@
|
|||
#define HID_BOOT_KEYBOARD_PROTOCOL 0x01
|
||||
|
||||
/* Type Defines: */
|
||||
/** Enum for the different types of HID reports. */
|
||||
enum HID_ReportItemTypes_t
|
||||
{
|
||||
REPORT_ITEM_TYPE_In = 1, /**< Indicates that the item is an IN report type. */
|
||||
REPORT_ITEM_TYPE_Out = 2, /**< Indicates that the item is an OUT report type. */
|
||||
REPORT_ITEM_TYPE_Feature = 3, /**< Indicates that the item is a FEATURE report type. */
|
||||
};
|
||||
|
||||
/** Type define for the HID class specific HID descriptor, to describe the HID device's specifications. Refer to the HID
|
||||
* specification for details on the structure elements.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue