From: Bert van Hall Date: Thu, 19 Jun 2014 12:35:50 +0000 (+0200) Subject: Fix missing report IDs in feature reports X-Git-Tag: LUFA-140928~34^2 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/ffb5f7e3b307269ffed736a06a2a53987db7e227?ds=inline Fix missing report IDs in feature reports As it is the case for input reports, the ID has to be sent for feature reports when a device has multiple reports implemented. Signed-off-by: Bert van Hall --- diff --git a/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c b/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c index e46330f94..03a745c1a 100644 --- a/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c +++ b/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c @@ -68,6 +68,10 @@ void HID_Device_ProcessControlRequest(USB_ClassInfo_HID_Device_t* const HIDInter Endpoint_SelectEndpoint(ENDPOINT_CONTROLEP); Endpoint_ClearSETUP(); + + if (ReportID) + Endpoint_Write_8(ReportID); + Endpoint_Write_Control_Stream_LE(ReportData, ReportSize); Endpoint_ClearOUT(); }