Hi,
I am using nrf52832 board. I write below code for read from EEPROM. But my application restarted when this code executed.
EEPROM.begin();
int address = 0;
byte value;
value = EEPROM.read(address);
Serial.println( "PRINT:");
Serial.print(address);
Serial.print("\t");
Serial.print(value, DEC);
Serial.println();
Serial.println("\n-------------------");
So please can any one suggest what I am doing wrong in this.
Only error is in below line:
value = EEPROM.read(address);
Thanks
Mitesh