mirror of https://github.com/arendst/Tasmota.git
parent
dbd7d29765
commit
f5b73bdf9c
|
@ -763,7 +763,10 @@ typedef struct {
|
||||||
uint32_t cfg_crc32; // FFC
|
uint32_t cfg_crc32; // FFC
|
||||||
} TSettings;
|
} TSettings;
|
||||||
|
|
||||||
|
#ifndef CONFIG_IDF_TARGET_ESP32S2
|
||||||
|
// For the ESP32-S2 the settings area has been made larger than 4096 by accident in order to support more GPIO's
|
||||||
static_assert(sizeof(TSettings) == 4096, "TSettings Size is not correct");
|
static_assert(sizeof(TSettings) == 4096, "TSettings Size is not correct");
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint16_t valid; // 280 (RTC memory offset 100 - sizeof(RTCRBT))
|
uint16_t valid; // 280 (RTC memory offset 100 - sizeof(RTCRBT))
|
||||||
|
|
Loading…
Reference in New Issue