diff options
author | Joel Challis <git@zvecr.com> | 2021-02-14 01:44:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 01:44:22 +0000 |
commit | 1f2fe2eab99548f4bde2a79b03e3303cc9b73214 (patch) | |
tree | 22c7b61acf16ce3e25b5c35ce56cc2bb6ebec290 /tmk_core/common/keyboard.c | |
parent | 72e515547aedbfd0b91296a51a81861236be8fe5 (diff) | |
download | qmk_firmware-1f2fe2eab99548f4bde2a79b03e3303cc9b73214.tar.gz qmk_firmware-1f2fe2eab99548f4bde2a79b03e3303cc9b73214.zip |
Refactor platform logic within print.h (#11863)
* Remove GCC check from debug
* Remove platform logic from common.mk
* Refactor platform logic within print.h
* restore debug.c format
* headers
* Rename function pointer type
* review comments
* Update tmk_core/common/printf.c
Co-authored-by: Nick Brassel <nick@tzarc.org>
* Format
Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'tmk_core/common/keyboard.c')
-rw-r--r-- | tmk_core/common/keyboard.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index a6bde9df85..299bda2c12 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -229,6 +229,7 @@ void keyboard_setup(void) { #ifndef NO_JTAG_DISABLE disable_jtag(); #endif + print_set_sendchar(sendchar); matrix_setup(); keyboard_pre_init_kb(); } |