Completely disable persistence until we have a proper flash backup/restore method

This commit is contained in:
Federico Amedeo Izzo 2021-03-13 23:03:37 +01:00
parent 9720032238
commit 1637159329
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,8 @@ void state_init()
void state_terminate()
{
// Write settings to flash memory
nvm_writeSettings(&state.settings);
// NOTE: Disable writing settings to flash until persistence is implemented
//nvm_writeSettings(&state.settings);
}
void state_applyTimezone()