소스 검색

Replace fuprintf with printf in the uart_write example

Vadim Kaushan 5 년 전
부모
커밋
cea7b2bde0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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