aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/chibios/main.c
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2020-02-04 18:28:47 -0800
committerGitHub <noreply@github.com>2020-02-04 18:28:47 -0800
commit0010d0c45e4aba8225249e230b3d23337e8378f4 (patch)
tree1e948e820ede77f6582fec85dc9195acc0fe270f /tmk_core/protocol/chibios/main.c
parent8a749a7a8e0c47488b19bb92ac5b35bc60f66dd8 (diff)
downloadfirmware-0010d0c45e4aba8225249e230b3d23337e8378f4.tar.gz
firmware-0010d0c45e4aba8225249e230b3d23337e8378f4.tar.bz2
firmware-0010d0c45e4aba8225249e230b3d23337e8378f4.zip
Add Midi Endpoint task to ChibiOS main (#8071)
Diffstat (limited to 'tmk_core/protocol/chibios/main.c')
-rw-r--r--tmk_core/protocol/chibios/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c
index 4b66bc522..a61ffad12 100644
--- a/tmk_core/protocol/chibios/main.c
+++ b/tmk_core/protocol/chibios/main.c
@@ -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