summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/arm_atsam/printf.c
Commit message (Collapse)AuthorAgeFilesLines
* Migrate arm_atsam print logic to use common framework (#13554)Joel Challis2021-07-161-72/+0
|
* Refactor platform logic within print.h (#11863)Joel Challis2021-02-141-1/+5
| | | | | | | | | | | | | | | | | | | | | | | * 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>
* clang-format changesskullY2019-08-301-22/+24
|
* Fix undefined reference to `console_printf` for CTRL and ALT keyboardspatrickmt2018-10-291-2/+2
| | | | Fix undefined reference to `console_printf` for CTRL and ALT keyboards when enabling CONSOLE_ENABLE
* Massdrop keyboards console device support for hid_listenpatrickmt2018-10-101-0/+66
Added hid_listen USB device for arm_atsam USB protocol. Debug printing is now done through the console device (CONSOLE_ENABLE = yes) rather than the virtser device, for viewing in hid_listen. Function dpf(...) renamed to CDC_printf(...) and should now be called directly if intending to print to the virtual serial device.