summaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-11-02 18:53:46 +0000
committerGitHub <noreply@github.com>2021-11-02 18:53:46 +0000
commit634e42b2b47d32ae8aa933599e63e3761939e3f5 (patch)
tree5079db1b33ae4b13c97339fc36573d967384da15 /tmk_core
parent0ecd4926b20b3a3240dcb29f5184853c1ec192b8 (diff)
Revert to old init order for host driver (#15029)
* Partially revert 14888
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/protocol/chibios/chibios.c6
-rw-r--r--tmk_core/protocol/lufa/lufa.c6
-rw-r--r--tmk_core/protocol/vusb/protocol.c5
3 files changed, 9 insertions, 8 deletions
diff --git a/tmk_core/protocol/chibios/chibios.c b/tmk_core/protocol/chibios/chibios.c
index 98b3305089..5ba21b3f8e 100644
--- a/tmk_core/protocol/chibios/chibios.c
+++ b/tmk_core/protocol/chibios/chibios.c
@@ -140,7 +140,7 @@ void protocol_setup(void) {
// chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
}
-void protocol_init(void) {
+void protocol_pre_init(void) {
/* Init USB */
usb_event_queue_init();
init_usb_driver(&USB_DRIVER);
@@ -173,10 +173,10 @@ void protocol_init(void) {
wait_ms(50);
print("USB configured.\n");
-
- host_set_driver(driver);
}
+void protocol_post_init(void) { host_set_driver(driver); }
+
void protocol_pre_task(void) {
usb_event_queue_task();
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
index 80781d2f37..e3be96d93d 100644
--- a/tmk_core/protocol/lufa/lufa.c
+++ b/tmk_core/protocol/lufa/lufa.c
@@ -1072,7 +1072,7 @@ void protocol_setup(void) {
usb_device_state_init();
}
-void protocol_init(void) {
+void protocol_pre_init(void) {
setup_usb();
sei();
@@ -1094,10 +1094,10 @@ void protocol_init(void) {
#else
USB_USBTask();
#endif
-
- host_set_driver(&lufa_driver);
}
+void protocol_post_init(void) { host_set_driver(&lufa_driver); }
+
void protocol_pre_task(void) {
#if !defined(NO_USB_STARTUP_CHECK)
if (USB_DeviceState == DEVICE_STATE_Suspended) {
diff --git a/tmk_core/protocol/vusb/protocol.c b/tmk_core/protocol/vusb/protocol.c
index 947c3383f1..644e77e021 100644
--- a/tmk_core/protocol/vusb/protocol.c
+++ b/tmk_core/protocol/vusb/protocol.c
@@ -113,12 +113,13 @@ void protocol_setup(void) {
#endif
}
-void protocol_init(void) {
+void protocol_pre_init(void) {
setup_usb();
sei();
+}
+void protocol_post_init(void) {
host_set_driver(vusb_driver());
-
wait_ms(50);
}