diff options
| author | Fred Sundvik <fsundvik@gmail.com> | 2016-07-07 14:01:20 +0300 |
|---|---|---|
| committer | Fred Sundvik <fsundvik@gmail.com> | 2016-07-07 14:01:20 +0300 |
| commit | 7229751ba9d402b2a6c9dc1b7b29385b5162fe41 (patch) | |
| tree | e3bfc81e5853b6bc1729058cdb114d72bf372ce0 /tmk_core/protocol/chibios/main.c | |
| parent | 07d0d5cbe48d7afaf0bc8c9916d40179ec51cb42 (diff) | |
| download | qmk_firmware-7229751ba9d402b2a6c9dc1b7b29385b5162fe41.tar.gz qmk_firmware-7229751ba9d402b2a6c9dc1b7b29385b5162fe41.zip | |
Fix visualizer crash at startup
Visualizer and serial link initialized in the wrong order.
The LED_ENABLED define wasn't set properly
uGfx is always initialized
Diffstat (limited to 'tmk_core/protocol/chibios/main.c')
| -rw-r--r-- | tmk_core/protocol/chibios/main.c | 7 |
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 | ||
