ESP8622 with NodeMCU firmware starts blinking after flashing new version of firmware (old builds are working)

后端 未结 4 2029
情话喂你
情话喂你 2021-01-14 10:05

Yesterday i tried to generate new firmware bin from nodemcu-build.com and after flashing with esptool.py, my esp started blinking (blue diode on esp chip) and sending out (t

4条回答
  •  萌比男神i
    2021-01-14 10:34

    I faced the same issue. I did the following steps, which solved the problem. Before flashing a new firmware, make sure your chip is fully erased. You may use the command below where "serial-port-of-ESP8266" may vary:

    esptool.py --port  erase_flash
    

    Then flash the firmware to the chip using the same technique you use for flashing nodeMCU 0.9.6. You can refer the command below, which is what I used for flashing.

    esptool.py --port /dev/ttyACM0 write_flash -fm qio 0x00000 nodemcu-master-8-modules-2016-12-16-09-52-59-float.bin
    

提交回复
热议问题