From 91f8f7f69e6af7db0442916b6d9028d90506077b Mon Sep 17 00:00:00 2001 From: Florian Didron Date: Tue, 5 Nov 2019 12:03:16 +0900 Subject: fix: run webusb task on chibios --- tmk_core/protocol/chibios/main.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tmk_core/protocol/chibios') diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c index de2b493b84..16f7f31b47 100644 --- a/tmk_core/protocol/chibios/main.c +++ b/tmk_core/protocol/chibios/main.c @@ -77,6 +77,10 @@ void raw_hid_task(void); void console_task(void); #endif +#ifdef WEBUSB_ENABLE +void webusb_task(void); +#endif + /* TESTING * Amber LED blinker thread, times are in milliseconds. */ @@ -214,6 +218,9 @@ int main(void) { #endif #ifdef RAW_ENABLE raw_hid_task(); +#endif +#ifdef WEBUSB_ENABLE + webusb_task(); #endif } } -- cgit v1.2.3