2018-10-03 03:26:07 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
*
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2018-10-03 03:26:07 -05:00
|
|
|
* Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
|
|
|
|
* Copyright (c) 2015-2016 Nico Tonnhofer wurstnase.reprap@gmail.com
|
|
|
|
* Copyright (c) 2016 Victor Perez victor_pv@hotmail.com
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-07-22 22:20:14 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-10-03 03:26:07 -05:00
|
|
|
*
|
|
|
|
*/
|
2018-12-03 06:55:49 -06:00
|
|
|
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
|
2018-10-03 03:26:07 -05:00
|
|
|
|
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
2020-04-29 14:46:33 -05:00
|
|
|
#if USE_WIRED_EEPROM
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-04-30 17:33:20 -05:00
|
|
|
/**
|
|
|
|
* PersistentStore for Arduino-style EEPROM interface
|
|
|
|
* with simple implementations supplied by Marlin.
|
|
|
|
*/
|
2020-04-29 14:46:33 -05:00
|
|
|
|
|
|
|
#include "../shared/eeprom_if.h"
|
2020-03-27 17:29:17 -05:00
|
|
|
#include "../shared/eeprom_api.h"
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-05-22 02:15:40 -05:00
|
|
|
#ifndef MARLIN_EEPROM_SIZE
|
|
|
|
#define MARLIN_EEPROM_SIZE size_t(E2END + 1)
|
|
|
|
#endif
|
|
|
|
size_t PersistentStore::capacity() { return MARLIN_EEPROM_SIZE; }
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-05-22 02:15:40 -05:00
|
|
|
bool PersistentStore::access_start() { eeprom_init(); return true; }
|
|
|
|
bool PersistentStore::access_finish() { return true; }
|
2020-04-30 17:33:20 -05:00
|
|
|
|
2019-09-28 23:51:04 -05:00
|
|
|
bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
|
2018-10-03 03:26:07 -05:00
|
|
|
while (size--) {
|
|
|
|
uint8_t v = *value;
|
|
|
|
|
2020-04-29 14:46:33 -05:00
|
|
|
// EEPROM has only ~100,000 write cycles,
|
|
|
|
// so only write bytes that have changed!
|
|
|
|
uint8_t * const p = (uint8_t * const)pos;
|
|
|
|
if (v != eeprom_read_byte(p)) {
|
|
|
|
eeprom_write_byte(p, v);
|
|
|
|
if (eeprom_read_byte(p) != v) {
|
|
|
|
SERIAL_ECHO_MSG(STR_ERR_EEPROM_WRITE);
|
|
|
|
return true;
|
2018-10-16 06:42:41 -05:00
|
|
|
}
|
2020-04-29 14:46:33 -05:00
|
|
|
}
|
2018-10-03 03:26:07 -05:00
|
|
|
|
|
|
|
crc16(crc, &v, 1);
|
|
|
|
pos++;
|
|
|
|
value++;
|
|
|
|
};
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-09 23:54:34 -05:00
|
|
|
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
2018-10-03 03:26:07 -05:00
|
|
|
do {
|
2018-10-16 06:42:41 -05:00
|
|
|
// Read from either external EEPROM, program flash or Backup SRAM
|
2020-04-29 14:46:33 -05:00
|
|
|
const uint8_t c = eeprom_read_byte((uint8_t*)pos);
|
2018-10-03 03:26:07 -05:00
|
|
|
if (writing) *value = c;
|
|
|
|
crc16(crc, &c, 1);
|
|
|
|
pos++;
|
|
|
|
value++;
|
|
|
|
} while (--size);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-29 14:46:33 -05:00
|
|
|
#endif // USE_WIRED_EEPROM
|
2019-06-28 23:04:33 -05:00
|
|
|
#endif // ARDUINO_ARCH_STM32 && !STM32GENERIC
|