diff options
author | Drashna Jaelre <drashna@live.com> | 2018-10-30 18:00:43 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-11-06 00:40:02 -0500 |
commit | 40313cfa3b4a4f1643382f0446e0a889ef3e76dc (patch) | |
tree | 47a6e3a1ae4f48bcf75f8a85857f3b5fbff06b84 /tmk_core/common | |
parent | ec34b5386455a4170db97aad21dc50b77d6ddfdd (diff) |
Fix Terminal feature on ChibiOS
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/print.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common/print.h b/tmk_core/common/print.h index d945276572..06c6cbd7f1 100644 --- a/tmk_core/common/print.h +++ b/tmk_core/common/print.h @@ -73,7 +73,9 @@ void print_set_sendchar(int8_t (*print_sendchar_func)(uint8_t)); #elif defined(PROTOCOL_CHIBIOS) /* PROTOCOL_CHIBIOS */ +#ifndef TERMINAL_ENABLE # include "chibios/printf.h" +#endif # ifdef USER_PRINT /* USER_PRINT */ |