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.
This is a super simple bug. On line 136 of EEPROM.cpp there is a log statement
log_e("Not enough memory for %d bytes in EEPROM");
Notice it is missing the parameter 'size'. It should be
log_e("Not enough memory for %d bytes in EEPROM",size);