It all started when I could not get either of my ESP-03's to respond to AT commands. I wired them up like this: CH_PD=VCC, GPIO15=GND. I could see bootloader output at 75k baud, followed by rom program output at 9600 baud. However, any input on UART was ignored. I could see an access point come up.
At this point I read that ESP-03's from factory don't respond to AT commands, so I proceeded to flash the latest firmware from Electrodragon (
https://drive.google.com/folderview?id= ... sp=sharing). First, I additionally tied GPIO0 to GND, then used esptool. With esptool I could read_mac and get flash_id, but only when GPIO0 was grounded.
I flashed like this:
Code: Select all#./esptool.py write_flash 0x000000 New-AI-v0.9.5.0_AT_Firmware.bin
After flashing, and removing GPIO0 to GND link, I could see a new access point come up. The name changed slightly from before. As before, I can see bootloader output on booting at 75k baud, but I no longer see anything from the rom program. Or maybe the rom program isn't running, but then I do see the new access point, so probably it is running. Needless to say I still can't communicate over UART with the module, in fact it's even worse that before
Currently I am working on building a firmware from source using the IoT SDK to see if that will change anything...