machine.reset(0 output

All ESP8266 boards running MicroPython.
Official boards are the Adafruit Huzzah and Feather boards.
Target audience: MicroPython users with an ESP8266 board.
Post Reply
rpr
Posts: 99
Joined: Sat Oct 27, 2018 5:17 pm

machine.reset(0 output

Post by rpr » Mon Jul 01, 2019 12:11 am

On my ESP32 when I do machine.reset() or press the RST button, I get readable output on my terminal. On the ESP8266, I gets unreadable characters. Any way to get readable output? I am using rshell with the default baud rate. Thanks.

User avatar
jimmo
Posts: 2754
Joined: Tue Aug 08, 2017 1:57 am
Location: Sydney, Australia
Contact:

Re: machine.reset(0 output

Post by jimmo » Mon Jul 01, 2019 12:43 am

The ESP's bootloader runs at a different baud rate. (74880 iirc) so your UART/USB adaptor running at 115200 will not be able to read it. Once MicroPython starts it switches to 115200, and you should see the banner and prompt.

rpr
Posts: 99
Joined: Sat Oct 27, 2018 5:17 pm

Re: machine.reset(0 output

Post by rpr » Mon Jul 01, 2019 2:55 am

jimmo -- thanks.

Post Reply