aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/common/arm_atsam/printf.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/arm_atsam/printf.h')
-rw-r--r--tmk_core/common/arm_atsam/printf.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/tmk_core/common/arm_atsam/printf.h b/tmk_core/common/arm_atsam/printf.h
index 3206b40bd..1f1c2280b 100644
--- a/tmk_core/common/arm_atsam/printf.h
+++ b/tmk_core/common/arm_atsam/printf.h
@@ -1,8 +1,11 @@
#ifndef _PRINTF_H_
#define _PRINTF_H_
-int dpf(const char *_Format, ...);
-#define __xprintf dpf
+#define CONSOLE_PRINTBUF_SIZE 512
+
+void console_printf(char *fmt, ...);
+
+#define __xprintf console_printf
#endif //_PRINTF_H_