Skip to content
Snippets Groups Projects
Commit 422dd666 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Fix Due EEPROM write bug

See #13065
parent 03e109c4
Branches
Tags
Loading
......@@ -52,6 +52,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
// so only write bytes that have changed!
if (v != eeprom_read_byte(p)) {
eeprom_write_byte(p, v);
delay(2);
if (eeprom_read_byte(p) != v) {
SERIAL_ECHO_MSG(MSG_ERR_EEPROM_WRITE);
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment