Replace fuprintf with printf in the uart_write example
This commit is contained in:
parent
d376982b4c
commit
cea7b2bde0
@ -19,7 +19,7 @@ void application_uart_write(void* p) {
|
|||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
// continously write it to UART
|
// continously write it to UART
|
||||||
fuprintf(log, "counter: %d\n", counter);
|
printf("counter: %d\n", counter);
|
||||||
counter++;
|
counter++;
|
||||||
|
|
||||||
// flash at every send
|
// flash at every send
|
||||||
|
Loading…
Reference in New Issue
Block a user