Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added HID_ReportRequestTypes_t #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion LUFA/Drivers/USB/Class/Common/HIDClassCommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,15 @@
HID_DTYPE_Report = 0x22, /**< Descriptor header type value, to indicate a HID class HID report descriptor. */
};

/** Enum for the different types of HID reports. */
/** Enum for the different types of HID report requests. */
enum HID_ReportRequestTypes_t
{
HID_REPORT_REQUEST_In = 1, /**< Indicates that the request is an IN report type. */
HID_REPORT_REQUEST_Out = 2, /**< Indicates that the request is an OUT report type. */
HID_REPORT_REQUEST_Feature = 3, /**< Indicates that the request is a FEATURE report type. */
};

/** Enum for the different types of HID report items. */
enum HID_ReportItemTypes_t
{
HID_REPORT_ITEM_In = 0, /**< Indicates that the item is an IN report type. */
Expand Down