forked from mirrors/qmk_userspace
Add Midi Endpoint task to ChibiOS main (#8071)
This commit is contained in:
parent
8a749a7a8e
commit
0010d0c45e
2 changed files with 17 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue