diff options
author | Joel Challis <git@zvecr.com> | 2021-07-16 17:08:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-16 17:08:34 +0100 |
commit | 366be0f7e9b4f408b7494fcb68142ac70d909170 (patch) | |
tree | 337dea5bb829226227eafbede608375cfc4a611a /tmk_core/common/arm_atsam/printf.h | |
parent | 5fda0e2c0456114b7200f3037c12837d6955332d (diff) |
Migrate arm_atsam print logic to use common framework (#13554)
Diffstat (limited to 'tmk_core/common/arm_atsam/printf.h')
-rw-r--r-- | tmk_core/common/arm_atsam/printf.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tmk_core/common/arm_atsam/printf.h b/tmk_core/common/arm_atsam/printf.h deleted file mode 100644 index 95557f5b01..0000000000 --- a/tmk_core/common/arm_atsam/printf.h +++ /dev/null @@ -1,7 +0,0 @@ -#pragma once - -#define CONSOLE_PRINTBUF_SIZE 512 - -void console_printf(char *fmt, ...); - -#define __xprintf console_printf |