diff options
| author | skullY | 2020-05-04 18:25:44 +0200 |
|---|---|---|
| committer | skullY | 2020-05-04 18:25:44 +0200 |
| commit | 6f30b402a285ddecce9b6f5b002a649f775225d2 (patch) | |
| tree | 5a25c7334d931a56d9fbfad80b6284cda7e38950 /tmk_core/protocol/chibios/main.c | |
| parent | 1ff526dac0e73ea8cce522d0106631e3a748802c (diff) | |
Revert "Fix conflicting types for 'tfp_printf' (#8269)"
This reverts commit e17b55e33ad5b3dcefcf7b828ac99aeb2daeeae2.
Diffstat (limited to 'tmk_core/protocol/chibios/main.c')
| -rw-r--r-- | tmk_core/protocol/chibios/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c index 7d32c16ed8..61665eb6f4 100644 --- a/tmk_core/protocol/chibios/main.c +++ b/tmk_core/protocol/chibios/main.c @@ -158,6 +158,9 @@ int main(void) { /* Init USB */ init_usb_driver(&USB_DRIVER); + /* init printf */ + init_printf(NULL, sendchar_pf); + #ifdef MIDI_ENABLE setup_midi(); #endif |