Skip to content

Commit

Permalink
[Core] ChibiOS: shorten USB disconnect state on boot to 50ms (qmk#15805)
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlK90 authored Jan 10, 2022
1 parent 5d0c92b commit 5470e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmk_core/protocol/chibios/usb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ void init_usb_driver(USBDriver *usbp) {
* after a reset.
*/
usbDisconnectBus(usbp);
wait_ms(1500);
wait_ms(50);
usbStart(usbp, &usbcfg);
usbConnectBus(usbp);

Expand Down

0 comments on commit 5470e4a

Please sign in to comment.