mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
Replace fuprintf with printf in the uart_write example
This commit is contained in:
parent
d376982b4c
commit
cea7b2bde0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue