Unable to get NodeMCU 2.1.0-master_20170521 working
Posted: Mon Jun 12, 2017 4:42 pm
Hello, I am using an ESP8266-ES12 (32m)
So I built the latest 2.1.0-master_20170521 version and I followed the following steps:
1. Erase flash:
2. Flash esp_init_data_default.bin (extracted from app/sdk/esp_iot_sdk_v2.1.0/bin) and flashed it a 0x3fc000
3. Flash 0x00000.bin at 0x00000 and 0x10000.bin at 0x10000
These steps work and I can see the prompt after "Erasing file system" for version 1.5.4 but for version 2.1.0, after the file system erase, all I see is garbage on the serial port. What am I missing here?
So I built the latest 2.1.0-master_20170521 version and I followed the following steps:
1. Erase flash:
Code: Select all
esptool.py --port /dev/cu.usbXXXX write_flash
2. Flash esp_init_data_default.bin (extracted from app/sdk/esp_iot_sdk_v2.1.0/bin) and flashed it a 0x3fc000
Code: Select all
esptool.py --port /dev/cu.usbXXXX write_flash -fm dio -fs 32m 0x3fc000 esp_init_data_default.bin
3. Flash 0x00000.bin at 0x00000 and 0x10000.bin at 0x10000
Code: Select all
esptool.py --port /dev/cu.usbXXXX write_flash -fm dio -fs 32m 0x00000 0x00000.bin 0x10000 0x10000.bin
These steps work and I can see the prompt after "Erasing file system" for version 1.5.4 but for version 2.1.0, after the file system erase, all I see is garbage on the serial port. What am I missing here?