Open pmer opened 2 years ago
I am also seeing mention of the bootloader always outputting at 115200 baud, but with the serial monitor at 115200 baud, I just get way more garbage, regardless of the value in Serial.begin(). Also is GNU Screen hanging for you whenever you try to connect from it?
What do you experience when you say that GNU Screen hangs?
I am always able to quit Screen safely via its Ctrl-A, k command, but sometimes for me the ESP32 hangs—it stops responding to any serial terminals, Screen or not.
Actually I think I just didn't know the correct command. I do experience the total hanging sometimes, which is going to be a serious issue we will probably require GDB to solve.
I'm actually not getting the garbage when connecting from Windows, but I'm not getting a prompt either until I send a line. For that problem I opened #19.
One possibility could be that it's caused by the ESP32 bootloader emitting a message at 115200 baud.
Connecting to the serial port with 115200 and changing
Serial.begin(9600)
toSerial.begin(115200)
invoid setup ()
fixes the issue for me.Resources:
Serial output I am seeing after making this change:
@seisatsu, how about you for?