Info Menu: Runaway Watch state (#14827)

This commit is contained in:
Tim Moore
2019-09-28 19:53:40 -07:00
committed by Scott Lahteine
parent 81b9c7c6ee
commit 7e72768433
12 changed files with 61 additions and 10 deletions

View File

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