hack to call tusb_task() in the mainloop

This commit is contained in:
hathach 2018-07-04 16:41:26 +07:00
parent 7fff7f5e70
commit 6d0cb96c85

5
main.c
View File

@ -230,6 +230,11 @@ bool start_mp(safe_mode_t safe_mode) {
serial_connected_before_animation = serial_connected();
tick_rgb_status_animation(&animation);
#ifdef NRF52840_XXAA
extern void tusb_task(void);
tusb_task();
#endif
}
}