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 Florian Didron
parent 0c4d319e8d
commit f67c942c49
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
#ifdef WEBUSB_ENABLE
void webusb_task(void);
@@ -218,6 +221,9 @@ int main(void) {
#ifdef CONSOLE_ENABLE
console_task();
#endif
#ifdef MIDI_ENABLE
midi_ep_task();
#endif
#ifdef VIRTSER_ENABLE
virtser_task();
#endif