We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d51511f commit 9976d63Copy full SHA for 9976d63
libraries/EEPROM/EEPROM.cpp
@@ -40,7 +40,7 @@ void EEPROMClass::begin(size_t size) {
40
size = 4096;
41
}
42
43
- size = (size + 255) & (~255); // Flash writes limited to 256 byte boundaries
+ _size = (size + 255) & (~255); // Flash writes limited to 256 byte boundaries
44
45
// In case begin() is called a 2nd+ time, don't reallocate if size is the same
46
if (_data && size != _size) {
0 commit comments