Skip to content

Commit 1a73ea4

Browse files
committed
Fix for building the WiFi firmware
1 parent db76a80 commit 1a73ea4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/app_config.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
#include "emonesp.h"
22
#include "espal.h"
33

4+
#include <Arduino.h>
5+
#include <EEPROM.h> // Save config settings
6+
#include <ConfigJson.h>
7+
#include <LittleFS.h>
8+
9+
#include "app_config.h"
10+
#include "app_config_mqtt.h"
11+
#include "app_config_mode.h"
12+
413
#if ENABLE_CONFIG_CHANGE_NOTIFICATION
514
#include "divert.h"
615
#include "net_manager.h"
@@ -14,15 +23,6 @@
1423
#include "limit.h"
1524
#endif
1625

17-
#include "app_config.h"
18-
#include "app_config_mqtt.h"
19-
#include "app_config_mode.h"
20-
21-
#include <Arduino.h>
22-
#include <EEPROM.h> // Save config settings
23-
#include <ConfigJson.h>
24-
#include <LittleFS.h>
25-
2626
#define EEPROM_SIZE 4096
2727

2828
#define CONFIG_OFFSET 0

0 commit comments

Comments
 (0)