aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/GenericHIDHost/GenericHIDHost.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-04-15 00:56:12 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-04-15 00:56:12 +0000
commitef06bfd1c0ef5272c32808e23d0fd60d2d1bca9c (patch)
tree7de576e7adb5b006d6ba4ed0f2813a258dd693a4 /Demos/Host/GenericHIDHost/GenericHIDHost.h
parentecaf872177e771b6b7e331b47a5b68832b5dd126 (diff)
downloadlufa-ef06bfd1c0ef5272c32808e23d0fd60d2d1bca9c.tar.gz
lufa-ef06bfd1c0ef5272c32808e23d0fd60d2d1bca9c.tar.bz2
lufa-ef06bfd1c0ef5272c32808e23d0fd60d2d1bca9c.zip
Fixed minor issue with the RNDISEthernet demo DHCP protocol decoder routine using incorrectly named variables (thanks to Jonathan Oakley).
Fixed GenericHIDHost demo report write routine incorrect for control type requests (thanks to Andrei).
Diffstat (limited to 'Demos/Host/GenericHIDHost/GenericHIDHost.h')
-rw-r--r--Demos/Host/GenericHIDHost/GenericHIDHost.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Demos/Host/GenericHIDHost/GenericHIDHost.h b/Demos/Host/GenericHIDHost/GenericHIDHost.h
index d0f3e7ae4..99b4599f1 100644
--- a/Demos/Host/GenericHIDHost/GenericHIDHost.h
+++ b/Demos/Host/GenericHIDHost/GenericHIDHost.h
@@ -64,6 +64,12 @@
/** HID Class specific request to send a HID report to the device. */
#define REQ_SetReport 0x09
+ /** HID Report type specifier, for output reports to a device */
+ #define HID_REPORTTYPE_OUTPUT 0x02
+
+ /** HID Report type specifier, for feature reports to a device */
+ #define HID_REPORTTYPE_FEATURE 0x03
+
/* Task Definitions: */
TASK(USB_HID_Host);