SPLIT - Remove NO_USB_STARTUP_CHECK requirement for usb detection (#7053)

* Avoid NO_USB_STARTUP_CHECK - Disable USB as checks seem to enable it somehow

* Update quantum/split_common/split_util.c

Co-Authored-By: fauxpark <fauxpark@gmail.com>

* Also remove NO_USB_STARTUP_CHECK from vitamins_included/rev1
This commit is contained in:
Joel Challis
2019-10-17 23:37:37 +01:00
committed by Florian Didron
parent 80f8ad232b
commit b89cafbdec

View File

@@ -32,6 +32,12 @@ bool waitForUsb(void) {
}
wait_ms(100);
}
#if defined(__AVR__)
// Avoid NO_USB_STARTUP_CHECK - Disable USB as the previous checks seem to enable it somehow
(USBCON &= ~(_BV(USBE) | _BV(OTGPADE)));
#endif
return false;
}