mirror of https://github.com/arendst/Tasmota.git
Fix WifiConfig error
This commit is contained in:
parent
acb7a51ebf
commit
f642f014b7
|
@ -13,6 +13,7 @@
|
|||
- Fix Arduino IDE compile error (#7277)
|
||||
- Fix restore ShutterAccuracy, MqttLog, WifiConfig, WifiPower and SerialConfig (#7281)
|
||||
- Fix no AP on initial install (#7282)
|
||||
- Fix failing downgrade (#7285)
|
||||
|
||||
### 7.1.2.6 20191214
|
||||
|
||||
|
|
|
@ -488,7 +488,7 @@ void UpdateQuickPowerCycle(bool update)
|
|||
* Config Settings.text char array support
|
||||
\*********************************************************************************************/
|
||||
|
||||
const uint32_t settings_text_size = 699; // Settings.flag4 (2D2) - Settings.ota_url (017)
|
||||
const uint32_t settings_text_size = 699; // Settings.display_model (2D2) - Settings.ota_url (017)
|
||||
|
||||
uint32_t GetSettingsTextLen(void)
|
||||
{
|
||||
|
@ -1280,7 +1280,7 @@ void SettingsDelta(void)
|
|||
Settings.ex_energy_power_delta = 0;
|
||||
}
|
||||
if (Settings.version < 0x06060015) {
|
||||
if ((EX_WIFI_SMARTCONFIG == Settings.sta_config) || (EX_WIFI_WPSCONFIG == Settings.sta_config)) {
|
||||
if ((EX_WIFI_SMARTCONFIG == Settings.ex_sta_config) || (EX_WIFI_WPSCONFIG == Settings.ex_sta_config)) {
|
||||
Settings.ex_sta_config = WIFI_MANAGER;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue