From 34f37a96ddf9a93147087be3d19469ea67d7b00b Mon Sep 17 00:00:00 2001 From: Max Prokhorov Date: Sun, 10 Feb 2019 01:50:52 +0300 Subject: [PATCH] Setup settings before using them in system module --- code/espurna/espurna.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/espurna/espurna.ino b/code/espurna/espurna.ino index 21a87a88..d8ad3052 100644 --- a/code/espurna/espurna.ino +++ b/code/espurna/espurna.ino @@ -64,12 +64,12 @@ void setup() { // Init EEPROM eepromSetup(); - // Init Serial, SPIFFS and system check - systemSetup(); - // Init persistance settingsSetup(); + // Init Serial, SPIFFS and system check + systemSetup(); + // Init terminal features #if TERMINAL_SUPPORT terminalSetup();