diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-05-23 13:19:13 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-05-23 13:19:13 +0000 |
| commit | 38e24abcd2ed267a4baf7d3feb1ca366769df48d (patch) | |
| tree | 53ec43032878d1cf7c051277a1ff101f5d31c721 /Demos/Device | |
| parent | c2713512525917be0f90e880252fd7486a749903 (diff) | |
Update MediaController project to remove the Record usage (not often needed) and explicitly declare each usage for maximum clarity.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1762 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device')
| -rw-r--r-- | Demos/Device/ClassDriver/KeyboardMouseMultiReport/Descriptors.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Demos/Device/ClassDriver/KeyboardMouseMultiReport/Descriptors.h b/Demos/Device/ClassDriver/KeyboardMouseMultiReport/Descriptors.h index 0a9d729d..7dbb331f 100644 --- a/Demos/Device/ClassDriver/KeyboardMouseMultiReport/Descriptors.h +++ b/Demos/Device/ClassDriver/KeyboardMouseMultiReport/Descriptors.h @@ -60,11 +60,13 @@ /** Size in bytes of each of the HID reporting IN. */ #define HID_EPSIZE 16 - + + /* Enums: */ + /** Enum for the HID report IDs used in the device. */ enum { - HID_REPORTID_MouseReport = 0x01, - HID_REPORTID_KeyboardReport = 0x02, + HID_REPORTID_MouseReport = 0x01, /**< Report ID for the Mouse report within the device. */ + HID_REPORTID_KeyboardReport = 0x02, /**< Report ID for the Keyboard report within the device. */ } HID_Report_IDs; /* Function Prototypes: */ |
