Explorar el Código

Replace fuprintf with printf in the uart_write example

Vadim Kaushan hace 5 años
padre
commit
cea7b2bde0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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