mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-23 02:36:35 +00:00
ESP8266 Gratuitous ARP enabled
- ESP8266 Gratuitous ARP enabled and set to 60 seconds (#13623) - Version bump to 10.0.0.3
This commit is contained in:
parent
6766fca41c
commit
1e326460bd
@ -3,7 +3,11 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
## [Unreleased] - Development
|
## [Unreleased] - Development
|
||||||
|
|
||||||
## [10.0.0.2]
|
## [10.0.0.3]
|
||||||
|
### Changed
|
||||||
|
- ESP8266 Gratuitous ARP enabled and set to 60 seconds (#13623)
|
||||||
|
|
||||||
|
## [10.0.0.2] 20211113
|
||||||
### Added
|
### Added
|
||||||
- Support for HDC2010 temperature/humidity sensor by Luc Boudreau (#13633)
|
- Support for HDC2010 temperature/humidity sensor by Luc Boudreau (#13633)
|
||||||
|
|
||||||
|
@ -100,7 +100,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
|||||||
|
|
||||||
[Complete list](BUILDS.md) of available feature and sensors.
|
[Complete list](BUILDS.md) of available feature and sensors.
|
||||||
|
|
||||||
## Changelog v10.0.0.2
|
## Changelog v10.0.0.3
|
||||||
### Added
|
### Added
|
||||||
- 1 second heartbeat GPIO
|
- 1 second heartbeat GPIO
|
||||||
- ESP32 Berry add module ``python_compat`` to be closer to Python syntax [#13428](https://github.com/arendst/Tasmota/issues/13428)
|
- ESP32 Berry add module ``python_compat`` to be closer to Python syntax [#13428](https://github.com/arendst/Tasmota/issues/13428)
|
||||||
@ -111,9 +111,10 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
|||||||
- ESP32-S2 TSettings memory usage fixed to 4096 bytes regression from v9.5.0.8
|
- ESP32-S2 TSettings memory usage fixed to 4096 bytes regression from v9.5.0.8
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- File editor no-wrap [#13427](https://github.com/arendst/Tasmota/issues/13427)
|
|
||||||
- ESP32 core library from v1.0.7.4 to v2.0.1
|
- ESP32 core library from v1.0.7.4 to v2.0.1
|
||||||
- ESP32-C3 core library from v2.0.0-post to v2.0.1-rc1
|
- ESP32-C3 core library from v2.0.0-post to v2.0.1
|
||||||
|
- File editor no-wrap [#13427](https://github.com/arendst/Tasmota/issues/13427)
|
||||||
|
- ESP8266 Gratuitous ARP enabled and set to 60 seconds [#13623](https://github.com/arendst/Tasmota/issues/13623)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Initial reset RTC memory based variables like EnergyToday and EnergyTotal
|
- Initial reset RTC memory based variables like EnergyToday and EnergyTotal
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
#define WIFI_CONFIG_TOOL WIFI_RETRY // [WifiConfig] Default tool if Wi-Fi fails to connect (default option: 4 - WIFI_RETRY)
|
#define WIFI_CONFIG_TOOL WIFI_RETRY // [WifiConfig] Default tool if Wi-Fi fails to connect (default option: 4 - WIFI_RETRY)
|
||||||
// (WIFI_RESTART, WIFI_MANAGER, WIFI_RETRY, WIFI_WAIT, WIFI_SERIAL, WIFI_MANAGER_RESET_ONLY)
|
// (WIFI_RESTART, WIFI_MANAGER, WIFI_RETRY, WIFI_WAIT, WIFI_SERIAL, WIFI_MANAGER_RESET_ONLY)
|
||||||
// The configuration can be changed after first setup using WifiConfig 0, 2, 4, 5, 6 and 7.
|
// The configuration can be changed after first setup using WifiConfig 0, 2, 4, 5, 6 and 7.
|
||||||
#define WIFI_ARP_INTERVAL 0 // [SetOption41] Send gratuitous ARP interval
|
#define WIFI_ARP_INTERVAL 60 // [SetOption41] Send gratuitous ARP interval
|
||||||
#define WIFI_SCAN_AT_RESTART false // [SetOption56] Scan Wi-Fi network at restart for configured AP's
|
#define WIFI_SCAN_AT_RESTART false // [SetOption56] Scan Wi-Fi network at restart for configured AP's
|
||||||
#define WIFI_SCAN_REGULARLY true // [SetOption57] Scan Wi-Fi network every 44 minutes for configured AP's
|
#define WIFI_SCAN_REGULARLY true // [SetOption57] Scan Wi-Fi network every 44 minutes for configured AP's
|
||||||
|
|
||||||
|
@ -1454,6 +1454,11 @@ void SettingsDelta(void) {
|
|||||||
memset(&Settings->energy_kWhtoday_ph, 0, 36);
|
memset(&Settings->energy_kWhtoday_ph, 0, 36);
|
||||||
memset(&RtcSettings.energy_kWhtoday_ph, 0, 24);
|
memset(&RtcSettings.energy_kWhtoday_ph, 0, 24);
|
||||||
}
|
}
|
||||||
|
if (Settings->version < 0x0A000003) {
|
||||||
|
if (0 == Settings->param[P_ARP_GRATUITOUS]) {
|
||||||
|
Settings->param[P_ARP_GRATUITOUS] = WIFI_ARP_INTERVAL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Settings->version = VERSION;
|
Settings->version = VERSION;
|
||||||
SettingsSave(1);
|
SettingsSave(1);
|
||||||
|
@ -20,6 +20,6 @@
|
|||||||
#ifndef _TASMOTA_VERSION_H_
|
#ifndef _TASMOTA_VERSION_H_
|
||||||
#define _TASMOTA_VERSION_H_
|
#define _TASMOTA_VERSION_H_
|
||||||
|
|
||||||
const uint32_t VERSION = 0x0A000002;
|
const uint32_t VERSION = 0x0A000003;
|
||||||
|
|
||||||
#endif // _TASMOTA_VERSION_H_
|
#endif // _TASMOTA_VERSION_H_
|
||||||
|
Loading…
x
Reference in New Issue
Block a user