From 368c2f1cdf7e723115e9ef8a03d601f8afa8592d 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(+) 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