We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 497345f commit 34f5d35Copy full SHA for 34f5d35
libraries/mbed-memory-status/mbed_memory_status.cpp
@@ -67,9 +67,10 @@
67
#define DEBUG_MEMORY_CONTENTS 0
68
#endif
69
70
-#define OUTPUT_SERIAL 1
+#define OUTPUT_SERIAL 0
71
#define OUTPUT_RTT 0
72
#define OUTPUT_SWO 0
73
+#define OUTPUT_PRINTF 1
74
75
#if DEBUG_ISR_STACK_USAGE
76
#include "compiler_abstraction.h"
@@ -198,6 +199,10 @@ static void nway_print_label(const char * label)
198
199
#if OUTPUT_SWO
200
output_swo_print_label(label);
201
202
+
203
+#if OUTPUT_PRINTF
204
+ printf("%s", label);
205
+#endif
206
}
207
208
static const char HEX[] = "0123456789ABCDEF";
0 commit comments