aboutsummaryrefslogtreecommitdiff
path: root/Demos
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-11-29 03:01:31 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-11-29 03:01:31 +0000
commite1e5b8d93cd452b36657c0306e9b1e0e98187d2a (patch)
tree37e196dc4b806ebbe9e8f24fab1c649af0591f0b /Demos
parentcd1eed65fc2d3b4388ccb6d83fc046808c9ede44 (diff)
Fixed broken HID_REQ_GetReport request handler in the Low Level GenericHID demo.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1597 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Device/LowLevel/GenericHID/GenericHID.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/LowLevel/GenericHID/GenericHID.c b/Demos/Device/LowLevel/GenericHID/GenericHID.c
index ff3249df..f6dcd78b 100644
--- a/Demos/Device/LowLevel/GenericHID/GenericHID.c
+++ b/Demos/Device/LowLevel/GenericHID/GenericHID.c
@@ -139,7 +139,7 @@ void EVENT_USB_Device_ControlRequest(void)
/* Read the report data from the control endpoint */
Endpoint_Read_Control_Stream_LE(&GenericData, sizeof(GenericData));
- Endpoint_ClearOUT();
+ Endpoint_ClearIN();
ProcessGenericHIDReport(GenericData);
}