From 433399b05db8d4a8a3989e90614f7206d49568fc Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sat, 3 Oct 2009 07:59:32 +0000 Subject: Changed Audio Class driver sample read/write functions to be inline, to reduce the number of cycles needed to transfer samples to and from the device (allowing more time for processing and output). Fixed ClassDriver AudioOutput demo not selecting an audio output mode. --- LUFA/Drivers/USB/Class/Host/HIDParser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'LUFA/Drivers/USB/Class/Host/HIDParser.c') diff --git a/LUFA/Drivers/USB/Class/Host/HIDParser.c b/LUFA/Drivers/USB/Class/Host/HIDParser.c index 4d433e56e..6b370af30 100644 --- a/LUFA/Drivers/USB/Class/Host/HIDParser.c +++ b/LUFA/Drivers/USB/Class/Host/HIDParser.c @@ -216,7 +216,8 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData, uint16_t ReportSize, HID case (TYPE_MAIN | TAG_MAIN_INPUT): case (TYPE_MAIN | TAG_MAIN_OUTPUT): case (TYPE_MAIN | TAG_MAIN_FEATURE): - for (uint8_t ReportItemNum = 0; ReportItemNum < CurrStateTable->ReportCount; ReportItemNum++) + uint8_t Count = CurrStateTable->ReportCount; + for (uint8_t ReportItemNum = 0; ReportItemNum < Count; ReportItemNum++) { HID_ReportItem_t NewReportItem; -- cgit v1.2.3