2017-09-27 07:30:23 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-05-12 01:22:31 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-27 07:30:23 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HAL for stm32duino.com based on Libmaple and compatible (STM32F1)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __STM32F1__
|
|
|
|
|
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
2019-06-11 06:30:23 +02:00
|
|
|
#if ENABLED(EEPROM_SETTINGS) && NONE(FLASH_EEPROM_EMULATION, SPI_EEPROM, I2C_EEPROM)
|
2017-09-27 07:30:23 +02:00
|
|
|
|
2018-08-14 10:28:52 +02:00
|
|
|
#include "../shared/persistent_store_api.h"
|
|
|
|
|
2019-05-12 01:22:31 +02:00
|
|
|
#ifndef E2END
|
|
|
|
#define E2END 4095
|
|
|
|
#endif
|
|
|
|
#define HAL_STM32F1_EEPROM_SIZE (E2END + 1)
|
2017-09-27 07:30:23 +02:00
|
|
|
|
2019-05-12 01:22:31 +02:00
|
|
|
static char HAL_STM32F1_eeprom_content[HAL_STM32F1_EEPROM_SIZE];
|
2017-09-27 07:30:23 +02:00
|
|
|
|
2019-05-12 01:22:31 +02:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2018-07-07 05:32:15 +02:00
|
|
|
|
2019-05-12 01:22:31 +02:00
|
|
|
#include "../../sd/cardreader.h"
|
2017-09-27 07:30:23 +02:00
|
|
|
|
2019-05-15 09:42:10 +02:00
|
|
|
#define EEPROM_FILENAME "eeprom.dat"
|
2019-05-12 01:22:31 +02:00
|
|
|
|
|
|
|
bool PersistentStore::access_start() {
|
|
|
|
if (!card.isDetected()) return false;
|
2019-05-15 09:42:10 +02:00
|
|
|
|
|
|
|
SdFile file, root = card.getroot();
|
|
|
|
if (!file.open(&root, EEPROM_FILENAME, O_RDONLY))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
int16_t bytes_read = file.read(HAL_STM32F1_eeprom_content, HAL_STM32F1_EEPROM_SIZE);
|
2019-05-12 01:22:31 +02:00
|
|
|
if (bytes_read < 0) return false;
|
|
|
|
for (; bytes_read < HAL_STM32F1_EEPROM_SIZE; bytes_read++)
|
2019-05-15 09:42:10 +02:00
|
|
|
HAL_STM32F1_eeprom_content[bytes_read] = 0xFF;
|
|
|
|
file.close();
|
2019-05-12 01:22:31 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PersistentStore::access_finish() {
|
|
|
|
if (!card.isDetected()) return false;
|
2019-05-15 09:42:10 +02:00
|
|
|
|
|
|
|
SdFile file, root = card.getroot();
|
2019-05-17 03:43:20 +02:00
|
|
|
int16_t bytes_written = 0;
|
|
|
|
if (file.open(&root, EEPROM_FILENAME, O_CREAT | O_WRITE | O_TRUNC)) {
|
|
|
|
bytes_written = file.write(HAL_STM32F1_eeprom_content, HAL_STM32F1_EEPROM_SIZE);
|
|
|
|
file.close();
|
|
|
|
}
|
2019-05-12 01:22:31 +02:00
|
|
|
return (bytes_written == HAL_STM32F1_EEPROM_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else // !SDSUPPORT
|
|
|
|
|
|
|
|
#error "Please define SPI_EEPROM (in Configuration.h) or disable EEPROM_SETTINGS."
|
|
|
|
|
|
|
|
#endif // !SDSUPPORT
|
2017-09-27 07:30:23 +02:00
|
|
|
|
2018-08-14 03:13:59 +02:00
|
|
|
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) {
|
2019-02-26 05:51:14 +01:00
|
|
|
for (size_t i = 0; i < size; i++)
|
2018-07-07 05:32:15 +02:00
|
|
|
HAL_STM32F1_eeprom_content[pos + i] = value[i];
|
2018-01-05 17:25:42 +01:00
|
|
|
crc16(crc, value, size);
|
|
|
|
pos += size;
|
|
|
|
return false;
|
2017-09-27 07:30:23 +02:00
|
|
|
}
|
|
|
|
|
2018-08-14 03:13:59 +02:00
|
|
|
bool PersistentStore::read_data(int &pos, uint8_t* value, const size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
2019-02-26 05:51:14 +01:00
|
|
|
for (size_t i = 0; i < size; i++) {
|
2018-01-05 02:51:18 +01:00
|
|
|
uint8_t c = HAL_STM32F1_eeprom_content[pos + i];
|
2018-02-14 08:05:40 +01:00
|
|
|
if (writing) value[i] = c;
|
2018-01-05 02:51:18 +01:00
|
|
|
crc16(crc, &c, 1);
|
2018-01-05 17:25:42 +01:00
|
|
|
}
|
|
|
|
pos += size;
|
|
|
|
return false;
|
2017-09-27 07:30:23 +02:00
|
|
|
}
|
|
|
|
|
2018-08-14 08:04:11 +02:00
|
|
|
size_t PersistentStore::capacity() { return HAL_STM32F1_EEPROM_SIZE; }
|
2017-09-27 07:30:23 +02:00
|
|
|
|
|
|
|
#endif // EEPROM_SETTINGS
|
|
|
|
|
|
|
|
#endif // __STM32F1__
|