mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-24 11:16:34 +00:00
Merge branch 'development' into release
This commit is contained in:
commit
d9557fb0f4
@ -13,6 +13,9 @@
|
||||
### 7.2.0 20191221
|
||||
|
||||
- Release
|
||||
- Fix Arduino IDE compile error (#7277)
|
||||
- Fix restore ShutterAccuracy, MqttLog, WifiConfig, WifiPower and SerialConfig (#7281)
|
||||
- Fix no AP on initial install (#7282)
|
||||
|
||||
### 7.1.2.6 20191214
|
||||
|
||||
|
@ -1240,8 +1240,8 @@ void SettingsDelta(void)
|
||||
memset((char*)&Settings +0x1D6, 0x00, 16);
|
||||
}
|
||||
if (Settings.version < 0x0606000F) {
|
||||
Settings.shutter_accuracy = 0;
|
||||
Settings.mqttlog_level = MQTT_LOG_LEVEL;
|
||||
Settings.ex_shutter_accuracy = 0;
|
||||
Settings.ex_mqttlog_level = MQTT_LOG_LEVEL;
|
||||
}
|
||||
if (Settings.version < 0x06060011) {
|
||||
Settings.param[P_BACKLOG_DELAY] = MIN_BACKLOG_DELAY;
|
||||
@ -1281,7 +1281,7 @@ void SettingsDelta(void)
|
||||
}
|
||||
if (Settings.version < 0x06060015) {
|
||||
if ((EX_WIFI_SMARTCONFIG == Settings.sta_config) || (EX_WIFI_WPSCONFIG == Settings.sta_config)) {
|
||||
Settings.sta_config = WIFI_MANAGER;
|
||||
Settings.ex_sta_config = WIFI_MANAGER;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1294,10 +1294,10 @@ void SettingsDelta(void)
|
||||
SettingsEnableAllI2cDrivers();
|
||||
}
|
||||
if (Settings.version < 0x07000004) {
|
||||
Settings.wifi_output_power = 170;
|
||||
Settings.ex_wifi_output_power = 170;
|
||||
}
|
||||
if (Settings.version < 0x07010202) {
|
||||
Settings.serial_config = TS_SERIAL_8N1;
|
||||
Settings.ex_serial_config = TS_SERIAL_8N1;
|
||||
}
|
||||
if (Settings.version < 0x07010204) {
|
||||
if (Settings.flag3.ex_cors_enabled == 1) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user