summaryrefslogtreecommitdiffstats
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.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/tmk_core/common/arm_atsam/printf.h b/tmk_core/common/arm_atsam/printf.h
new file mode 100644
index 000000000..1f1c2280b
--- /dev/null
+++ b/tmk_core/common/arm_atsam/printf.h
@@ -0,0 +1,11 @@
+#ifndef _PRINTF_H_
+#define _PRINTF_H_
+
+#define CONSOLE_PRINTBUF_SIZE 512
+
+void console_printf(char *fmt, ...);
+
+#define __xprintf console_printf
+
+#endif //_PRINTF_H_
+