Skip to content
jollen chen edited this page Apr 14, 2018 · 10 revisions

Flash Apps

esptool.py -p /dev/cu.SLAB_USBtoUART --baud 115200 write_flash -fs 32m -fm dio -ff 40m 0x20000 ./0x20000.bin 0x00000 ./0x00000.bin

Flash ESP8266

# Wio Link (74880 BPS)
#esptool.py --port /dev/cu.SLAB_USBtoUART --baud 115200 write_flash -ff 40m -fm qio -fs=32m-c1 0x3fc000 esp_init_data_default.bin 0x3fe000 blank.bin 0x0000 boot_v1.4\(b1\).bin 0x1000 user1.bin 0x101000 user2.bin

# NodeMCU (115200 BPS)
esptool.py --port /dev/cu.SLAB_USBtoUART --baud 115200 write_flash -ff 40m -fm dio -fs 32m 0x00000 bin/0x00000.bin 0x10000 bin/0x10000.bin
esptool.py --port /dev/cu.SLAB_USBtoUART --baud 115200 write_flash -ff 40m -fm dio -fs 32m 0x3fc000 esp_init_data_default.bin 0x3fe000 blank.bin

# NodeMCU on Wio Link (115200 BPS)
#esptool.py --port /dev/cu.SLAB_USBtoUART --baud 576000 write_flash -ff 40m -fm qio -fs 32m 0x00000 0x00000.bin 0x10000 0x10000.bin
#esptool.py --port /dev/cu.SLAB_USBtoUART --baud 576000 write_flash -ff 40m -fm qio -fs 32m-c1 0x3fc000 esp_init_data_default.bin 0x3fe000 blank.bin
Clone this wiki locally