possibly all files needed to make things work
This commit is contained in:
parent
708bb4f55d
commit
09ff4b0c99
15 changed files with 783 additions and 16 deletions
|
@ -82,10 +82,15 @@ void raw_hid_task(void);
|
|||
#ifdef CONSOLE_ENABLE
|
||||
void console_task(void);
|
||||
#endif
|
||||
|
||||
#ifdef MIDI_ENABLE
|
||||
void midi_ep_task(void);
|
||||
#endif
|
||||
|
||||
#ifdef GAMEPAD_ENABLE
|
||||
void gamepad_ep_task(void);
|
||||
#endif
|
||||
|
||||
/* TESTING
|
||||
* Amber LED blinker thread, times are in milliseconds.
|
||||
*/
|
||||
|
@ -253,6 +258,9 @@ int main(void) {
|
|||
#endif
|
||||
#ifdef MIDI_ENABLE
|
||||
midi_ep_task();
|
||||
#endif
|
||||
#ifdef GAMEPAD_ENABLE
|
||||
gamepad_ep_task();
|
||||
#endif
|
||||
#ifdef VIRTSER_ENABLE
|
||||
virtser_task();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue