Add Midi Endpoint task to ChibiOS main (#8071)

This commit is contained in:
Drashna Jaelre 2020-02-04 18:28:47 -08:00 committed by GitHub
parent 8a749a7a8e
commit 0010d0c45e
Failed to generate hash of commit
2 changed files with 17 additions and 1 deletions

View file

@ -81,6 +81,9 @@ void raw_hid_task(void);
#ifdef CONSOLE_ENABLE
void console_task(void);
#endif
#ifdef MIDI_ENABLE
void midi_ep_task(void);
#endif
/* TESTING
* Amber LED blinker thread, times are in milliseconds.
@ -214,6 +217,9 @@ int main(void) {
#ifdef CONSOLE_ENABLE
console_task();
#endif
#ifdef MIDI_ENABLE
midi_ep_task();
#endif
#ifdef VIRTSER_ENABLE
virtser_task();
#endif