Search found 4 matches

by hacker007
Tue Feb 21, 2023 4:40 pm
Forum: ESP-IDF
Topic: No MD5 found in partition table No core dump partition found!
Replies: 1
Views: 2530

Re: No MD5 found in partition table No core dump partition found!

I have downgraded Arduino ESP32 to ESP32 Arduino Release 1.0.6 based on ESP-IDF v3.3.5. Now it works. I know MD5 is done in the program itself, but is there a way to let Arduino ESP32 program be flashed onto ESP IDF base via OTA update? I want to avoid recompiling of Arduino ESP32 with MD5 disabled....
by hacker007
Mon Feb 20, 2023 8:24 pm
Forum: ESP-IDF
Topic: No MD5 found in partition table No core dump partition found!
Replies: 1
Views: 2530

No MD5 found in partition table No core dump partition found!

Hi. I have written program in ESP IDF - OTA server. Below you can see debug data (first part of it is when I start the ESP32 with ESP IDF code). Then I try to upload new firmware/code via curl written in Arduino IDE. I get an error I have no coredump and no MD5 in partition and the ESP32 rolls back ...
by hacker007
Fri Mar 23, 2018 7:07 am
Forum: ESP32 Arduino
Topic: ESP32 SPIFFS reading file into String
Replies: 2
Views: 20429

Re: ESP32 SPIFFS reading file into String

Yes. I figured out what the problem is. It is the current ESP-arduino release. People seem to have problems with SPIFFS from december up to now (end of march 2018) and still. The problem is, it uses old MKSPIFFS.exe. A fix for now is: If you update it manually to latest repease 0.2.3, SPIFFS will wo...
by hacker007
Sat Mar 17, 2018 10:38 pm
Forum: ESP32 Arduino
Topic: ESP32 SPIFFS reading file into String
Replies: 2
Views: 20429

ESP32 SPIFFS reading file into String

Hi. I want to read a text .html file from SPIFFS into a String variable and use .replace commands in Arduino. Afterwards I plan to send them to the HTTP client. It works great on esp8266... For now I tried: //I call it with: readFile(SPIFFS, "/about.html"); //The file exists!!! void readFile(fs::FS ...