diff options
| author | hathach <thach@tinyusb.org> | 2018-07-04 16:41:26 +0700 |
|---|---|---|
| committer | hathach <thach@tinyusb.org> | 2018-07-04 16:41:26 +0700 |
| commit | 6d0cb96c85ab941428284033e09a99fd4fe88bba (patch) | |
| tree | fb04c77be4e9d6928e1511c3409b95771366cf05 | |
| parent | 7fff7f5e70c652ccffce2a598a4e3b7df92ad67b (diff) | |
hack to call tusb_task() in the mainloop
| -rw-r--r-- | main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 } } |
