ESP32 EEPROM access
Posted: Sun Sep 02, 2018 9:07 pm
Hello,
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
But this is permanently failing. I am using an ESP32 VROOM module.
What do I miss ?
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 ?