aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-07-27 10:55:21 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-07-27 10:55:21 +0000
commitb9dd51cd632c1a8cff18f77b4f09c33bdf804768 (patch)
treefdd996d102f100e63b10cb90dc19a48aa6888f8e /LUFA/Drivers
parent84c3c4a3d90e7f890c61d4640c2d65a469b42b79 (diff)
downloadlufa-b9dd51cd632c1a8cff18f77b4f09c33bdf804768.tar.gz
lufa-b9dd51cd632c1a8cff18f77b4f09c33bdf804768.tar.bz2
lufa-b9dd51cd632c1a8cff18f77b4f09c33bdf804768.zip
Collapse configuration descriptor size retrieval and size testing into a single if statement within the new host mode class driver demos for clarity.
Diffstat (limited to 'LUFA/Drivers')
-rw-r--r--LUFA/Drivers/USB/Class/Host/HID.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/Class/Host/HID.h b/LUFA/Drivers/USB/Class/Host/HID.h
index 1959fd265..344c06f06 100644
--- a/LUFA/Drivers/USB/Class/Host/HID.h
+++ b/LUFA/Drivers/USB/Class/Host/HID.h
@@ -66,8 +66,13 @@
uint8_t DataINPipeNumber; /**< Pipe number of the HID interface's IN data pipe */
uint8_t DataOUTPipeNumber; /**< Pipe number of the HID interface's OUT data pipe */
- bool MatchInterfaceProtocol;
- uint8_t HIDInterfaceProtocol;
+ bool MatchInterfaceProtocol; /**< Indicates whether the driver should match the device's
+ * HID interface protocol's value to the \ref HIDInterfaceProtocol
+ * suppled (otherwise just accept all HID class devices)
+ */
+ uint8_t HIDInterfaceProtocol; /**< HID interface protocol value to match against if the
+ * \ref MatchInterfaceProtocol is set to true (ignored otherwise)
+ */
} Config; /**< Config data for the USB class interface within the device. All elements in this section
* <b>must</b> be set or the interface will fail to enumerate and operate correctly.
*/