Match up write_data signatures

This commit is contained in:
Scott Lahteine
2019-08-02 10:32:51 -05:00
parent 2e27e3ba04
commit 18c9182903
6 changed files with 7 additions and 7 deletions

View File

@ -80,7 +80,7 @@ static char _ALIGN(4) HAL_eeprom_data[HAL_EEPROM_SIZE];
#endif // !SDSUPPORT
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++)
HAL_eeprom_data[pos + i] = value[i];
crc16(crc, value, size);