2017-09-24 04:25:28 +00:00
|
|
|
#ifdef __AVR__
|
2017-08-01 02:44:26 +00:00
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
#include "../persistent_store_api.h"
|
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
2017-06-17 23:36:10 +00:00
|
|
|
|
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
|
|
|
|
|
|
|
namespace HAL {
|
|
|
|
namespace PersistentStore {
|
|
|
|
|
2018-07-07 03:32:15 +00:00
|
|
|
bool access_start() { return true; }
|
|
|
|
bool access_finish() { return true; }
|
2017-06-17 23:36:10 +00:00
|
|
|
|
|
|
|
bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
|
|
|
|
while (size--) {
|
|
|
|
uint8_t * const p = (uint8_t * const)pos;
|
|
|
|
uint8_t v = *value;
|
|
|
|
// EEPROM has only ~100,000 write cycles,
|
|
|
|
// so only write bytes that have changed!
|
|
|
|
if (v != eeprom_read_byte(p)) {
|
|
|
|
eeprom_write_byte(p, v);
|
|
|
|
if (eeprom_read_byte(p) != v) {
|
|
|
|
SERIAL_ECHO_START();
|
|
|
|
SERIAL_ECHOLNPGM(MSG_ERR_EEPROM_WRITE);
|
2017-10-18 19:00:29 +00:00
|
|
|
return true;
|
2017-06-17 23:36:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
crc16(crc, &v, 1);
|
|
|
|
pos++;
|
|
|
|
value++;
|
|
|
|
};
|
2017-10-18 19:00:29 +00:00
|
|
|
return false;
|
2017-06-17 23:36:10 +00:00
|
|
|
}
|
|
|
|
|
2018-01-05 01:51:18 +00:00
|
|
|
bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing/*=true*/) {
|
2017-06-17 23:36:10 +00:00
|
|
|
do {
|
|
|
|
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
2018-01-05 01:51:18 +00:00
|
|
|
if (writing) *value = c;
|
2017-06-17 23:36:10 +00:00
|
|
|
crc16(crc, &c, 1);
|
|
|
|
pos++;
|
|
|
|
value++;
|
|
|
|
} while (--size);
|
2017-10-18 19:00:29 +00:00
|
|
|
return false; // always assume success for AVR's
|
2017-06-17 23:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // EEPROM_SETTINGS
|
2017-09-24 04:25:28 +00:00
|
|
|
#endif // __AVR__
|