Page 1 of 1

Bios Default BAUD [esp8266]

Posted: Sun Oct 02, 2016 9:26 pm
by KevinA
While working on the latest SDK I was trying to figure out the garbage on my screen every time I rebooted to discover 74880 baud would allow me to see what was being dumped to the screen. Is there a reason for 74880 instead of a standard baud rates? Some terminal programs do not have 74880 support and there are plenty of posts about garbage at the esp8266 forum.

Re: Bios Default BAUD

Posted: Sun Oct 02, 2016 10:20 pm
by kolban
I am finding that my default baud rate after a reboot is 115200. I am using the latest ESP-IDF images from Github and am using a DevKitC board made by Espressif to host my ESP32. Now ... I am also flashing the device at 115200. When I tried to flash it with a faster rate ... i.e 230400 that worked ... however on reboot, I found that at the initial start of a soft reboot, the speed remained at 230400 until somewhere into the boot process where it seemed to switch back to 115200. So far, I haven't seen a 74880 on my ESP32 travels.

Re: Bios Default BAUD

Posted: Mon Oct 03, 2016 3:01 pm
by a2retro
I find 921,600 with compressed works quite nicely for me using my Particle Programmer board. I have not tried that speed via the built in silabs interface yet.

Edit: 921,600 also works for me on the silabs interface

Re: Bios Default BAUD

Posted: Tue Oct 18, 2016 5:59 am
by KevinA
My bad, I should have posted in the esp8266 forum, the latest NodeMCU from LoLin has sdk 5.2 on it and this is what it does:

print(uart.setup(0, 74880, 8, 0, 1, 1 ))

ERROR

Communication with MCU..Got answer! Communication with MCU established.
AutoDetect firmware...

Can't autodetect firmware, because proper answer not received (may be unknown firmware).
Please, reset module or continue.
boot mode:(3,6)

load 0x40100000, len 1856, room 16
tail 0
chksum 0x63
load 0x3ffe8000, len 776, room 8
tail 0
chksum 0x02
load 0x3ffe8310, len 552, room 8
tail 0
chksum 0x79
csum 0x79

2nd boot version : 1.5
SPI Speed : 40MHz
SPI Mode : DIO
SPI Flash Size & Map: 8Mbit(512KB+512KB)
jump to run user1 @ 1000

È[ƒÐÚ�R+­¨R�
After I can switch to 115200 and read everything.
AT+GMR

AT version:0.60.0.0(Jan 29 2016 15:10:17)
SDK version:1.5.2(7eee54f4)
Ai-Thinker Technology Co. Ltd.
May 5 2016 17:30:30
OK

But I haven't gotten my ESP3212 boards yet, still waiting..

Re: Bios Default BAUD [esp8266]

Posted: Tue Oct 18, 2016 10:42 pm
by ESP_Angus
Thanks for updating Kevin. The 74880 on esp8266 is an artifact of the crystal speed (if you use a 40MHz crystal the baud rate is 115200, but everyone uses 26MHz crystals so it's proportionally lower.) On ESP32 the default baud rate is 115200 regardless of crystal clock rate.