Fix HID report parser incorrectly decoding 32-bit USAGE elements.
authorDean Camera <dean@fourwalledcubicle.com>
Sun, 9 Dec 2018 02:31:04 +0000 (13:31 +1100)
committerDean Camera <dean@fourwalledcubicle.com>
Sun, 9 Dec 2018 02:31:07 +0000 (13:31 +1100)
LUFA/DoxygenPages/ChangeLog.txt
LUFA/Drivers/USB/Class/Common/HIDParser.c

index 0880224..ebb8150 100644 (file)
@@ -31,6 +31,7 @@
   *   - Fixed CDC_Device_Send*_P() and CDC_Host_Send*_P() variant functions not compiled out for UC3 architecture
   *   - Fixed USB_STRING_DESCRIPTOR_ARRAY() not accepting more than two byte long arrays
   *   - Fixed HID report parser corruption when parsing PUSH and POP report item elements
+  *   - Fixed HID report parser incorrectly decoding 32-bit USAGE elements
   *  - Library Applications:
   *   - Fixed bootloaders not disabling global interrupts during erase and write operations (thanks to Zoltan)
   *   - Fixed bootloaders accepting flash writes to the bootloader region (thanks to NicoHood)
index 87eaf7c..08f894e 100644 (file)
@@ -105,9 +105,6 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData,
                                break;
 
                        case HID_RI_USAGE_PAGE(0):
-                               if ((HIDReportItem & HID_RI_DATA_SIZE_MASK) == HID_RI_DATA_BITS_32)
-                                 CurrStateTable->Attributes.Usage.Page = (ReportItemData >> 16);
-
                                CurrStateTable->Attributes.Usage.Page       = ReportItemData;
                                break;
 
@@ -178,6 +175,9 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData,
                                if (UsageListSize == HID_USAGE_STACK_DEPTH)
                                  return HID_PARSE_UsageListOverflow;
 
+                               if ((HIDReportItem & HID_RI_DATA_SIZE_MASK) == HID_RI_DATA_BITS_32)
+                                 CurrStateTable->Attributes.Usage.Page = (ReportItemData >> 16);
+
                                UsageList[UsageListSize++] = ReportItemData;
                                break;