Sfoglia il codice sorgente

Replace fuprintf with printf in the uart_write example

Vadim Kaushan 5 anni fa
parent
commit
cea7b2bde0
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      applications/examples/uart_write.c

+ 1 - 1
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