I'm not new to the ESP8266 world, and I have few controllers installed, Sonoff on all the heating units and few 8266 managing security.
I was planning to do something very simple.... A fresh 8266F12 to be attached to a single relay ... simple and easy.
I took one new 8266F12 and soldered to the base. The base has two integrated resistors linking channel selec to Positive and gpio15 to ground. I linked only RX TX GPIO4 and 5 plus Power and ground.
I erase the chip:
Code: Select all
C:\Python27\Scripts>..\python esptool.py --port COM5 erase_flash
esptool.py v1.2.1
Connecting...
Running Cesanta flasher stub...
Erasing flash (this may take a while)...
Erase took 3.5 seconds
Code: Select all
C:\Python27\Scripts>..\python esptool.py --port COM5 write_flash -fs detect -fm dio 0 d:\esp8266\ESPEasy-bin\ESP_Easy_mega-20180331_normal_ESP8266_4096.bin
esptool.py v1.2.1
Connecting...
Auto-detected Flash size: 16m
Running Cesanta flasher stub...
Flash params set to 0x0230
Writing 589824 @ 0x0... 589824 (100 %)
Wrote 589824 bytes at 0x0 in 51.3 seconds (92.0 kbit/s)...
Leaving...
Code: Select all
~ld<LF>ªU<LF><LF><CR>INIT : Booting version: v2.0-20180217
INIT : Warm boot #35
FS : Mounting...
FS : Mount failed
FS : Mount failed
RESET: Resetting factory defaults...
RESET: Warm boot, reset count: 3
RESET: Too many resets, protecting your flash memory (powercycle to solve this)
FS : Error while reading/writing config.dat in 954
<LF>PID:0
Version:0
INIT : Incorrect PID or version!
RESET: Resetting factory defaults...
RESET: Warm boot, reset count: 3
RESET: Too many resets, protecting your flash memory (powercycle to solve this)
Exception (0):
epc1=0x40106f19 epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000000 depc=0x00000000
ctx: cont
sp: 3fff4340 end: 3fff45b0 offset: 01a0
>>>stack>>>
3fff44e0: 0000001c 00000000 3fff34bc 401004d8
3fff44f0: 3fff34bc 0000004e 3fff5e04 40205de9
3fff4500: 00000000 00000001 0000011c 4010020c
3fff4510: 0000001c 00000000 3fff34bc 00000000
3fff4520: 0000001c 00000000 3fff34bc 4020176c
3fff4530: 00000001 3fff4608 00000000 40203df3
3fff4540: 3fffdad0 3fff34bc 3fff5e04 3fff357c
3fff4550: 3fffdad0 3fff34bc 3fff2290 40214e91
3fff4560: 3fffdad0 3fff34bc 3fff2290 40239c2c
3fff4570: 00000000 00000000 00000000 3fff5e14
3fff4580: 0000002f 00000014 feefeffe feefeffe
3fff4590: 3fffdad0 00000000 3fff3576 402034d4
3fff45a0: feefeffe feefeffe 3fff3590 40205f84
<<<stack<<<
ets Jan 8 2013,rst cause:2, boot mode:(3,6)
load 0x4010f000, len 1384, room 16
tail 8
chksum 0x2d
csum 0x2d
v09826c6d
~ld<LF>ªU<LF><LF><CR>INIT : Booting version: v2.0-20180217
INIT : Warm boot #36
FS : Mounting...
FS : Mount failed
FS : Mount failed
RESET: Resetting factory defaults...
RESET: Warm boot, reset count: 3
RESET: Too many resets, protecting your flash memory (powercycle to solve this)
FS : Error while reading/writing config.dat in 954
<LF>PID:0
Version:0
INIT : Incorrect PID or version!
RESET: Resetting factory defaults...
RESET: Warm boot, reset count: 3
RESET: Too many resets, protecting your flash memory (powercycle to solve this)
Exception (0):
epc1=0x40106f19 epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000000 depc=0x00000000
ctx: cont
sp: 3fff4340 end: 3fff45b0 offset: 01a0
If install the old 147 version everything is perfect.
What is the problem ??
Thanks for help
Marcello