forked from mfulz_github/qmk_firmware
Oops - fix Host mode pre-enumeration settle delay being ignored leading to failure to enumerate certain devices.
This commit is contained in:
parent
d6e3259f8b
commit
a925407588
|
@ -66,14 +66,12 @@ void USB_Host_ProcessNextHostState(void)
|
||||||
USB_HostState = HOST_STATE_Powered_WaitForDeviceSettle;
|
USB_HostState = HOST_STATE_Powered_WaitForDeviceSettle;
|
||||||
break;
|
break;
|
||||||
case HOST_STATE_Powered_WaitForDeviceSettle:
|
case HOST_STATE_Powered_WaitForDeviceSettle:
|
||||||
#if HOST_DEVICE_SETTLE_DELAY_MS > 0
|
|
||||||
if (!(WaitMSRemaining--))
|
if (!(WaitMSRemaining--))
|
||||||
{
|
{
|
||||||
_delay_ms(1);
|
_delay_ms(1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
|
||||||
{
|
{
|
||||||
USB_Host_VBUS_Manual_Off();
|
USB_Host_VBUS_Manual_Off();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue