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 } }