I'm kind of newby on esp world and after many many tries and internet searches, i'm lost. Here is the story :
After successfull programming of a nodemcu, I recently received several esp8266-12E and esp8266-12F that i'd like to integrate in my projects.
I followed this tutorial to communicate with my ESPs : http://www.instructables.com/id/Getting ... /?ALLSTEPS
using :
- a FTDI232 to communicate with my laptop.
- a MB102 to provide power to the ESP. Output voltage is ~ 3.21V
I use the Arduino IDE console to try to communicate with option "both NL & CR" enabled . After several RSTs which sent me strange characters, i found the appropriate baud rate to be 74880 on the "-12F" and 115200 on the "-12E"
First problem is that, with GPIO0 to HIGH, and after a reset, i got :
- on the -12E :
ets Jan 8 2013,rst cause:2, boot mode:(1,7)
- on the -12F :
i got a few AT commands working, like
AT+GMR
AT version:0.40.0.0(Aug 8 2015 14:45:58)
SDK version:1.3.0
Ai-Thinker Technology Co.,Ltd.
Build:1.3.0.2 Sep 11 2015 11:48:04
but most of the time, i got the infamous watchdog timer reset, something very frequently (2 or 3/sec). AT+CWLAP was also making it reset.
So i decided to try to flash them with latest nodemcu firmware. I connected GPIO0 to GND and used this command from my ubuntu (with files downloaded locally of course) :
sudo python ./esptool/esptool.py --port /dev/ttyUSB0 write_flash 0x00000 ./nodemcu_integer_0.9.6-dev_20150704.bin
It took sometimes several tries. I got this error message at different % :
<...>
Connecting...
Erasing flash...
Took 2.77s to erase flash block
Writing at 0x00009800... (8 %)
A fatal error occurred: Invalid head of packet
Then a success (was it?) :
Connecting...
Erasing flash...
Took 2.40s to erase flash block
Wrote 450560 bytes at 0x00000000 in 43.5 seconds (82.9 kbit/s)...
Leaving...
I re-wire GPIO0 to HIGH. Go on Arduino IDE, restart console, and i have this :
- on '-12E' :
load 0x40100000, len 29824, room 16
tail 0
chksum 0x0b
load 0x3ffe8000, len 3064, room 8
tail 0
chksum 0xc3
load 0x3ffe8bf8, len 8, room 8
tail 0
chksum 0xa5
csum 0xa5
system param error
56 45 52 31 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00
ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
ff ff ff ff ff ff ff ff ff ff
... a lots of ff, some 00, then garbage
- on the '-12F' ? well it seems dead now, don't remember what i tried
So am i totally wrong ? Did i miss something "obvious" ? Help would be really appreciated.



Thanks,
Pascal.