diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-27 07:10:00 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-27 07:10:00 +0000 |
commit | f7cde02b80c001875231c8ef21211214ebc742ed (patch) | |
tree | a40189a0c4f4d1a8b1c6f46b14dcc7a3e253b42c /LUFA | |
parent | 665fe11f128b95874befdd59492379a0f5d8105e (diff) | |
download | lufa-f7cde02b80c001875231c8ef21211214ebc742ed.tar.gz lufa-f7cde02b80c001875231c8ef21211214ebc742ed.tar.bz2 lufa-f7cde02b80c001875231c8ef21211214ebc742ed.zip |
Added extra note about missing OUT endpoint configuration to the HID Device mode Class driver.
Added pinout information to the AVRISP project.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Drivers/USB/Class/Device/HID.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/LUFA/Drivers/USB/Class/Device/HID.h b/LUFA/Drivers/USB/Class/Device/HID.h index e3f091bfb..ccd7426e1 100644 --- a/LUFA/Drivers/USB/Class/Device/HID.h +++ b/LUFA/Drivers/USB/Class/Device/HID.h @@ -60,6 +60,10 @@ /** Class state structure. An instance of this structure should be made for each HID interface
* within the user application, and passed to each of the HID class driver functions as the
* HIDInterfaceInfo parameter. This stores each HID interface's configuration and state information.
+ *
+ * \note Due to technical limitations, the HID device class driver does not utilize a seperate OUT
+ * endpoint for host->device communications. Instead, the host->device data (if any) is sent to
+ * the device via the control endpoint.
*/
typedef struct
{
|