khoam wrote:.The CrystalFreq option should be set to 80 MHz.
And it isn't.
Czy wolisz polską wersję strony elektroda?
Nie, dziękuję Przekieruj mnie tamkhoam wrote:.khoam wrote:
The CrystalFreq option should be set to 80 MHz.
And it is not.
khoam wrote:.What "adapter" are you using to program this module?
INIT : SPI not enabled
WIFI : AP Mode disabledkhoam wrote:I was referring to the "adapter" for the ESP32 module itself and how to connect it to the USB/UART converter along with the power supply.
demsy wrote:.For the moment I only have this- https://pl.aliexpress.com/item/32982244472.html?spm=a2g0s.9042311.0.0.27425c0fFMQEpb
I have the power supply from the power supply, I will try to add a capacitor
demsy wrote:.now I have set 4.4V and the module draws me about 140 mA and surprisingly works
demsy wrote:.Wonderful situation with this power supply. if I set 3.3V the current consumption is only 40mA and of course it does not connect to the router
demsy wrote:.I am powering this with a laboratory power supply from KORAD.
khoam wrote:demsy wrote:.I am trying to upload a file called "ESP_Easy_mega_20211105_normal_ESP32_4M316k" from github.com in cell 0x10000
Why from 0x10000?
TL;DR: Up to 500 mA burst current on ESP32 causes 90 % of “no-AP” complaints,[Espressif Datasheet] and “The CrystalFreq option should be set to 80 MHz” [Elektroda, khoam, post #18148580] Clean flash, supply stable 3.3 V ≥ 500 mA, then flash from address 0.
Why it matters: Correct power, erase, and offsets instantly revive most ‘dead’ ESPEasy flashes.
• Operating voltage: 2.7 – 3.6 V DC (typ. 3.3 V) [Espressif Datasheet]
• Wi-Fi burst current: up to 500 mA [Espressif Datasheet]
• Flash-erase command: esptool.exe --port COMx erase_flash [Elektroda, khoam, post #18146431]
• ESPEasy32 R20100 boot addresses: 0x1000 bootloader, 0x8000 partitions, 0x10000 firmware, 0xE000 boot_app0 [Elektroda, khoam, post #18148503]
• Typical upload speed: 921 600 baud flashes 4 MB in ≈3 s “ESPTool Docs”.
esptool.exe --port COMx erase_flash [Elektroda, khoam, post #18146431]esptool.exe --port COM<n> erase_flash..bin file to 0x0, not 0x10000, then reset [Elektroda, khoam, post #19723947]esptool.py --chip esp32 --port COMx erase_flash.esptool.py --baud 460800 write_flash -z 0x1000 bootloader.bin 0x8000 ESPEasy.ino.partitions.bin 0xE000 boot_app0.bin 0x10000 ESPEasy32_RYYYYY.bin.