cal wrote:Is the ESP 12 different to ESP 01 when printing the boot message?
My ESP 01 print the boot message at 74880 baud, then switch to 115200 (normally no output if boots ok, RTC MEM CHECK errors sometimes or FATAL EXCEPTION on dsleep wakeup (see other thread))
and then switch to the baud rate defined in the nodemcu startup code, typically 9600 baud.
I don't think they are different in that aspect. I just used the ESP-12 module to conveniently be able to connect XPD_DCDC to EXT_RSTB.
Same here on Reset caused by pressing the reset button: boot message at 74880 baud, then Lua prompt.
But the WDT reset message seems to be sent at 115200 baud. I tried this on an ESP-01 board:
> tmr.delay(7000000); for i = 1, 1000000, 1 do a=1 end
In reality I change the NodeMCU default baud rate from 9600 to 115200 in user_main.c, so no switching is necessary. 9600 baud is needlessly slow anyways.