Replace fuprintf with printf in the uart_write example

This commit is contained in:
Vadim Kaushan 2020-09-14 21:26:36 +03:00
parent d376982b4c
commit cea7b2bde0

View File

@ -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