summaryrefslogtreecommitdiff
path: root/utilities/fsl_debug_console.h
diff options
context:
space:
mode:
Diffstat (limited to 'utilities/fsl_debug_console.h')
-rw-r--r--utilities/fsl_debug_console.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/utilities/fsl_debug_console.h b/utilities/fsl_debug_console.h
index 6c50de5..a3d3790 100644
--- a/utilities/fsl_debug_console.h
+++ b/utilities/fsl_debug_console.h
@@ -57,7 +57,7 @@
/*! @brief Definition to select sdk or toolchain printf, scanf. */
#ifndef SDK_DEBUGCONSOLE
-#define SDK_DEBUGCONSOLE 1U
+//#define SDK_DEBUGCONSOLE 1U
#endif
#if defined(SDK_DEBUGCONSOLE) && !(SDK_DEBUGCONSOLE)
@@ -90,10 +90,10 @@
#define PUTCHAR DbgConsole_Putchar
#define GETCHAR DbgConsole_Getchar
#else /* Select printf, scanf, putchar, getchar of toolchain. */
-#define PRINTF printf
-#define SCANF scanf
-#define PUTCHAR putchar
-#define GETCHAR getchar
+#define PRINTF(x...)
+#define SCANF(x...)
+#define PUTCHAR
+#define GETCHAR
#endif /* SDK_DEBUGCONSOLE */
/*******************************************************************************