From 163715932965765af571157b03f1ff5a6e2b6b62 Mon Sep 17 00:00:00 2001 From: Federico Amedeo Izzo Date: Sat, 13 Mar 2021 23:03:37 +0100 Subject: [PATCH] Completely disable persistence until we have a proper flash backup/restore method --- openrtx/src/state.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openrtx/src/state.c b/openrtx/src/state.c index b6d74a80..fcd07484 100644 --- a/openrtx/src/state.c +++ b/openrtx/src/state.c @@ -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()