Fix Due wired EEPROM init (#18074)

This commit is contained in:
Chris Pepper 2020-05-22 21:37:11 +01:00 committed by GitHub
parent 461647fcee
commit 4f1ebb4440
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,7 +38,7 @@
#error "MARLIN_EEPROM_SIZE is required for I2C / SPI EEPROM."
#endif
size_t PersistentStore::capacity() { return MARLIN_EEPROM_SIZE; }
bool PersistentStore::access_start() { return true; }
bool PersistentStore::access_start() { eeprom_init(); return true; }
bool PersistentStore::access_finish() { return true; }
bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {