Fix Due EEPROM write bug

See #13065
This commit is contained in:
Scott Lahteine 2019-02-20 04:04:07 -06:00
parent 03e109c4a3
commit 422dd6666e

View File

@ -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;