forked from mfulz_github/qmk_firmware
Fix double oops -- Host mode settle delay was still being ignored due to inverted logic, HID Parser was assigning the usage Min/Max usage value to the report item's collection path rather than the report item itself.
This commit is contained in:
parent
a925407588
commit
7e86387958
|
@ -235,7 +235,7 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData, uint16_t ReportSize, HID
|
|||
}
|
||||
else if (UsageMinMax.Minimum <= UsageMinMax.Maximum)
|
||||
{
|
||||
CurrCollectionPath->Usage.Usage = UsageMinMax.Minimum++;
|
||||
NewReportItem.Attributes.Usage.Usage = UsageMinMax.Minimum++;
|
||||
}
|
||||
|
||||
uint8_t ItemTag = (HIDReportItem & TAG_MASK);
|
||||
|
|
|
@ -66,7 +66,7 @@ void USB_Host_ProcessNextHostState(void)
|
|||
USB_HostState = HOST_STATE_Powered_WaitForDeviceSettle;
|
||||
break;
|
||||
case HOST_STATE_Powered_WaitForDeviceSettle:
|
||||
if (!(WaitMSRemaining--))
|
||||
if (WaitMSRemaining--)
|
||||
{
|
||||
_delay_ms(1);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue