aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/protocol
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r--tmk_core/protocol/chibios/main.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c
index 6bf9c1668..36fd45d45 100644
--- a/tmk_core/protocol/chibios/main.c
+++ b/tmk_core/protocol/chibios/main.c
@@ -104,13 +104,14 @@ int main(void) {
104 /* init printf */ 104 /* init printf */
105 init_printf(NULL,sendchar_pf); 105 init_printf(NULL,sendchar_pf);
106 106
107#ifdef SERIAL_LINK_ENABLE
108 init_serial_link();
109#endif
110
107#ifdef VISUALIZER_ENABLE 111#ifdef VISUALIZER_ENABLE
108 visualizer_init(); 112 visualizer_init();
109#endif 113#endif
110 114
111#ifdef SERIAL_LINK_ENABLE
112 init_serial_link();
113#endif
114 115
115 host_driver_t* driver = NULL; 116 host_driver_t* driver = NULL;
116 117