Browse Source

Merge pull request #1542 from mcspr/settings/fix-late-setup

Setup settings before using them in system module
sensors
Xose Pérez 5 years ago
committed by GitHub
parent
commit
f337337d4f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      code/espurna/espurna.ino

+ 3
- 3
code/espurna/espurna.ino View File

@ -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();


Loading…
Cancel
Save