-
-
Notifications
You must be signed in to change notification settings - Fork 807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serial Monitor swallows my print lines #3992
Comments
I think |
By the way, if you take this sketch and upload it via the Arduino IDE with the same settings (especially regarding debug level) and the same used core version (1.0.6 as of now), does the same output appear? If yes, it's immediately a Arduino-ESP32 issue, not a PlatformIO one. |
A flush() before the first println() suffices to get all numbers printed. |
Tested on Arduino 1.8.13 and 2.0.0Beta7: Exactly the same behavior: no numbers unless a Serial.flush() precedes the println(). |
Okay then it seems to be in issue in their core. You should try and file a issue there to get the |
And where might "there" be? |
The core repo is at https://github.com/espressif/arduino-esp32. |
reported here: espressif/arduino-esp32#5362 |
Fixed: espressif/arduino-esp32#5362 |
Any
Serial.print*()
command does not seem to make it to output when it is preceded by alog_X()
command, with X= e, i, d, w, v. This simple script:produces this output:
Yes, where are the numbers?
Platformio.ini:
The text was updated successfully, but these errors were encountered: