From cea7b2bde06b8dbdbe45f4a62ef11617e1a7a022 Mon Sep 17 00:00:00 2001 From: Vadim Kaushan Date: Mon, 14 Sep 2020 21:26:36 +0300 Subject: [PATCH] Replace fuprintf with printf in the uart_write example --- applications/examples/uart_write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/examples/uart_write.c b/applications/examples/uart_write.c index c6602123..1025eeaa 100644 --- a/applications/examples/uart_write.c +++ b/applications/examples/uart_write.c @@ -19,7 +19,7 @@ void application_uart_write(void* p) { while(1) { // continously write it to UART - fuprintf(log, "counter: %d\n", counter); + printf("counter: %d\n", counter); counter++; // flash at every send