aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Class/Host/HIDParser.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-09-20 12:34:07 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-09-20 12:34:07 +0000
commitaa640330a1b9421a16e425f5e0043a08558fb9bf (patch)
treee638cc7b81f60530c392a3ec8cb6af9c62b6456f /LUFA/Drivers/USB/Class/Host/HIDParser.h
parent51566d1a811f43dc39f38cb597de44ba9363d974 (diff)
downloadlufa-aa640330a1b9421a16e425f5e0043a08558fb9bf.tar.gz
lufa-aa640330a1b9421a16e425f5e0043a08558fb9bf.tar.bz2
lufa-aa640330a1b9421a16e425f5e0043a08558fb9bf.zip
Finish Class Driver MouseHost demo. Update HID Host Class driver; boot protocol now works, still need to finish and test report protocol mode.
Diffstat (limited to 'LUFA/Drivers/USB/Class/Host/HIDParser.h')
-rw-r--r--LUFA/Drivers/USB/Class/Host/HIDParser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Drivers/USB/Class/Host/HIDParser.h b/LUFA/Drivers/USB/Class/Host/HIDParser.h
index f598789df..74916dbb6 100644
--- a/LUFA/Drivers/USB/Class/Host/HIDParser.h
+++ b/LUFA/Drivers/USB/Class/Host/HIDParser.h
@@ -208,9 +208,9 @@
typedef struct
{
uint8_t ReportID; /** Report ID of the report within the HID interface */
- uint8_t BitsIn; /** Total number of IN data bits in the current report ID */
- uint8_t BitsOut; /** Total number of OUT data bits in the current report ID */
- uint8_t BitsFeature; /** Total number of FEATURE data bits in the current report ID */
+ uint8_t ReportSizeBits[3]; /** Total number of bits in each report type for the given Report ID,
+ * indexed by the \ref HID_ReportItemTypes_t enum
+ */
} HID_ReportSizeInfo_t;
/** Type define for a complete processed HID report, including all report item data and collections. */