-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFlashAsEEPROM.cpp
executable file
·74 lines (60 loc) · 1.78 KB
/
FlashAsEEPROM.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
EEPROM like API that uses Arduino Zero's flash memory.
Written by A. Christian
Copyright (c) 2015-2016 Arduino LLC. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "FlashAsEEPROM.h"
FlashStorage(eeprom_storage, EEPROM_EMULATION);
EEPROMClass::EEPROMClass(void) : _initialized(false), _dirty(false) {
// Empty
}
uint8_t EEPROMClass::read(int address)
{
if (!_initialized) init();
return _eeprom.data[address];
}
void EEPROMClass::update(int address, uint8_t value)
{
if (!_initialized) init();
if (_eeprom.data[address] != value) {
_dirty = true;
_eeprom.data[address] = value;
}
}
void EEPROMClass::write(int address, uint8_t value)
{
update(address, value);
}
void EEPROMClass::init()
{
_eeprom = eeprom_storage.read();
if (!_eeprom.valid) {
memset(_eeprom.data, 0xFF, EEPROM_EMULATION_SIZE);
}
_initialized = true;
}
bool EEPROMClass::isValid()
{
if (!_initialized) init();
return _eeprom.valid;
}
void EEPROMClass::commit()
{
if (!_initialized) init();
if (_dirty) {
_eeprom.valid = true;
eeprom_storage.write(_eeprom);
}
}
EEPROMClass EEPROM;