M5Cloud icon indicating copy to clipboard operation
M5Cloud copied to clipboard

Example esptool.py command doesn't specify --flash_mode dio

Open WillWritesCode opened this issue 7 years ago • 1 comments

Current README.md has teh following CLI example for flashing M5Cloud: esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART write_flash -z 0x1000 firmware.bin

Flashing suceeds with this, but the device then fails to boot. ESP32 has to be flashed in dual IO mode (DIO) - see https://github.com/espressif/esptool

This version has been tested/works on MacOS: esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART write_flash --flash_mode dio -z 0x1000 firmware.bin

WillWritesCode avatar Jan 31 '18 19:01 WillWritesCode

Thanks for your correct! I updated the README.

0x1abin avatar Feb 06 '18 04:02 0x1abin