Interesting tidbit regarding the ESP-01 running the WiFiModem firmware...
On the configuration web page there is a setting called Show WiFi connection information. Even if this is set to Do not show, at power up the firmware always sends the following information out the serial port at 9600 baud (some of these messages may be different if you're using DHCP instead of a static IP configuration):
*WM: [1] AutoConnect
*WM: [2] Connecting as wifi client...
*WM: [3] STA static IP: 192.168.1.122
*WM: [2] Custom static IP/GW/Subnet/DNS
*WM: [2] Custom STA IP/GW/Subnet
*WM: [1] STA IP set: 192.168.1.122
*WM: [1] Connecting to SAVED AP: FrankNet5
*WM: [3] Using Password: xxxxxxxx
*WM: [3] WiFi_enableSTA enable
*WM: [3] enableSTA PERSISTENT ON
*WM: [3] Mode after delay: STA+AP
*WM: [1] connectTimeout not set, ESP waitForConnectResult...
If
Show WiFi connection information is set to Print to serial port after connecting, it additionally sends at 9600 baud:
*WM: [2] Connection result: WL_CONNECTED
*WM: [1] AutoConnect: SUCCESS
*WM: [1] STA IP Address: 192.168.1.122
Connected to network
Listening on port 23 (telnet) at IP 192.168.1.122
And then the following information at the configured baud rate:
Connected to network
Listening on port 23 (telnet) at IP 192.168.1.122
Press 's' to skip this information at future connects....
Finally, after it connects to the WiFi access point, it always sends the following information at the configured baud rate:
*WM: [3] unloading
So the setting
Show WiFi connection information only suppresses some of the connection information.
The AltairDuino, of course, doesn't give a hoot because nothing is listening to the serial port immediately after power up.
I noticed this on the SC131 which gets confused at power up because it comes up expecting user input at 115200 baud.
This is not a complaint, but just an observation. The AltairDuino is fine with this, and the SC131 has a reset button that puts everything right.
The un-suppressed messages appear to emanate from within the WiFi Manager package itself.