Browse Source

Revert errant const

pull/1/head
Scott Lahteine 5 years ago
parent
commit
f2d93f61c3
  1. 2
      Marlin/src/HAL/HAL_DUE/persistent_store_eeprom.cpp
  2. 2
      Marlin/src/HAL/HAL_ESP32/persistent_store_spiffs.cpp
  3. 2
      Marlin/src/HAL/HAL_LPC1768/persistent_store_flash.cpp
  4. 2
      Marlin/src/HAL/HAL_SAMD51/persistent_store_eeprom.cpp
  5. 2
      Marlin/src/HAL/HAL_STM32/persistent_store_impl.cpp
  6. 2
      Marlin/src/HAL/HAL_STM32F1/persistent_store_eeprom.cpp
  7. 2
      Marlin/src/HAL/HAL_STM32_F4_F7/persistent_store_eeprom.cpp
  8. 2
      Marlin/src/HAL/HAL_TEENSY31_32/persistent_store_impl.cpp
  9. 2
      Marlin/src/HAL/HAL_TEENSY35_36/persistent_store_eeprom.cpp
  10. 2
      Marlin/src/HAL/shared/persistent_store_api.h

2
Marlin/src/HAL/HAL_DUE/persistent_store_eeprom.cpp

@ -44,7 +44,7 @@ bool PersistentStore::access_finish() {
return true; return true;
} }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
while (size--) { while (size--) {
uint8_t * const p = (uint8_t * const)pos; uint8_t * const p = (uint8_t * const)pos;
uint8_t v = *value; uint8_t v = *value;

2
Marlin/src/HAL/HAL_ESP32/persistent_store_spiffs.cpp

@ -72,7 +72,7 @@ bool PersistentStore::access_finish() {
return true; return true;
} }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
if (!eeprom_file.seek(pos)) return true; // return true for any error if (!eeprom_file.seek(pos)) return true; // return true for any error
if (eeprom_file.write(value, size) != size) return true; if (eeprom_file.write(value, size) != size) return true;

2
Marlin/src/HAL/HAL_LPC1768/persistent_store_flash.cpp

@ -109,7 +109,7 @@ bool PersistentStore::access_finish() {
return true; return true;
} }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
for (size_t i = 0; i < size; i++) ram_eeprom[pos + i] = value[i]; for (size_t i = 0; i < size; i++) ram_eeprom[pos + i] = value[i];
eeprom_dirty = true; eeprom_dirty = true;
crc16(crc, value, size); crc16(crc, value, size);

2
Marlin/src/HAL/HAL_SAMD51/persistent_store_eeprom.cpp

@ -58,7 +58,7 @@ bool PersistentStore::access_finish() {
return true; return true;
} }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
#if NONE(SPI_EEPROM, I2C_EEPROM) #if NONE(SPI_EEPROM, I2C_EEPROM)
if (NVMCTRL->SEESTAT.bit.RLOCK) if (NVMCTRL->SEESTAT.bit.RLOCK)
NVMCTRL_CMD(NVMCTRL_CTRLB_CMD_USEE); // Unlock E2P data write access NVMCTRL_CMD(NVMCTRL_CTRLB_CMD_USEE); // Unlock E2P data write access

2
Marlin/src/HAL/HAL_STM32/persistent_store_impl.cpp

@ -50,7 +50,7 @@ bool PersistentStore::access_finish() {
return true; return true;
} }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
while (size--) { while (size--) {
uint8_t v = *value; uint8_t v = *value;

2
Marlin/src/HAL/HAL_STM32F1/persistent_store_eeprom.cpp

@ -40,7 +40,7 @@ bool PersistentStore::access_start() {
} }
bool PersistentStore::access_finish() { return true; } bool PersistentStore::access_finish() { return true; }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
while (size--) { while (size--) {
uint8_t * const p = (uint8_t * const)pos; uint8_t * const p = (uint8_t * const)pos;
uint8_t v = *value; uint8_t v = *value;

2
Marlin/src/HAL/HAL_STM32_F4_F7/persistent_store_eeprom.cpp

@ -32,7 +32,7 @@
bool PersistentStore::access_start() { return true; } bool PersistentStore::access_start() { return true; }
bool PersistentStore::access_finish() { return true; } bool PersistentStore::access_finish() { return true; }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
while (size--) { while (size--) {
uint8_t * const p = (uint8_t * const)pos; uint8_t * const p = (uint8_t * const)pos;
uint8_t v = *value; uint8_t v = *value;

2
Marlin/src/HAL/HAL_TEENSY31_32/persistent_store_impl.cpp

@ -27,7 +27,7 @@
bool PersistentStore::access_start() { return true; } bool PersistentStore::access_start() { return true; }
bool PersistentStore::access_finish() { return true; } bool PersistentStore::access_finish() { return true; }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
while (size--) { while (size--) {
uint8_t * const p = (uint8_t * const)pos; uint8_t * const p = (uint8_t * const)pos;
uint8_t v = *value; uint8_t v = *value;

2
Marlin/src/HAL/HAL_TEENSY35_36/persistent_store_eeprom.cpp

@ -33,7 +33,7 @@
bool PersistentStore::access_start() { return true; } bool PersistentStore::access_start() { return true; }
bool PersistentStore::access_finish() { return true; } bool PersistentStore::access_finish() { return true; }
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) { bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
while (size--) { while (size--) {
uint8_t * const p = (uint8_t * const)pos; uint8_t * const p = (uint8_t * const)pos;
uint8_t v = *value; uint8_t v = *value;

2
Marlin/src/HAL/shared/persistent_store_api.h

@ -31,7 +31,7 @@ class PersistentStore {
public: public:
static bool access_start(); static bool access_start();
static bool access_finish(); static bool access_finish();
static bool write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc); static bool write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc);
static bool read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing=true); static bool read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing=true);
static size_t capacity(); static size_t capacity();

Loading…
Cancel
Save