I am porting a SW from ATMega to ESP32 and have some difficulties with the EEPROM as apparently nothing is stored. I have added the initialization sequence
Code: Select all
Serial.println("\nTesting EEPROM Library\n");
if (!EEPROM.begin(EEPROM.length())) {
Serial.println("Failed to initialise EEPROM");
Serial.println("Restarting...");
delay(1000);
ESP.restart();
}
What do I miss ?