Skip to content

Commit

Permalink
Fixes an issue where characters are not output with continuous printf.
Browse files Browse the repository at this point in the history
  • Loading branch information
embedded-kiddie committed May 25, 2024
1 parent 6595efb commit 712b75a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Printf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int printf(const char* fmt, ...) {
#endif

#if defined(ARDUINO_UNOWIFIR4) && 1
delay(len / 10); // UNO R4 WiFi needs some delay to fix buffer overrun
delay(2); // UNO R4 WiFi needs some delay to fix buffer overrun
#endif

return len;
Expand Down

0 comments on commit 712b75a

Please sign in to comment.