瀏覽代碼

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