mirror of https://github.com/arendst/Tasmota.git
update changelogs
This commit is contained in:
parent
0484299ee4
commit
1b5fdb5c57
|
@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
|
|||
### Changed
|
||||
- ESP32 refactored Wifi for ESP32 Core3 release (#21106)
|
||||
- ESP32 Core3 platform update from 2024.02.10 to 2024.04.10 (#21114)
|
||||
- ESP32 Core3 platform update from 2024.04.10 to 2024.04.11 (#21142)
|
||||
|
||||
### Fixed
|
||||
- NeoPool hydrolysis unit for Hidrolife, Bionet and Generic device (#21098)
|
||||
|
|
|
@ -150,7 +150,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
|
|||
- LVGL remove `textarea` and `spinbox` from binaries [#20916](https://github.com/arendst/Tasmota/issues/20916)
|
||||
|
||||
### Changed
|
||||
- ESP32 Core3 platform update from 2024.01.12 to 2024.04.10 [#21114](https://github.com/arendst/Tasmota/issues/21114)
|
||||
- ESP32 Core3 platform update from 2024.01.12 to 2024.04.11 [#21142](https://github.com/arendst/Tasmota/issues/21142)
|
||||
- ESP32 LVGL library from v9.0.0 to v9.1.0 [#21008](https://github.com/arendst/Tasmota/issues/21008)
|
||||
- Refactor Platformio script `post_esp32.py` [#20966](https://github.com/arendst/Tasmota/issues/20966)
|
||||
- NeoPool webUI pH alarms (4 & 5) completed (#20743)[#20743](https://github.com/arendst/Tasmota/issues/20743)
|
||||
|
|
|
@ -477,7 +477,7 @@ bool LoraWanInput(uint8_t* data, uint32_t packet_size) {
|
|||
if (mac_data_idx < 10) {
|
||||
mac_data[mac_data_idx++] = TAS_LORAWAN_CID_DEVICE_TIME_ANS;
|
||||
// ToDo - need to find a way how to calculate the leap seconds
|
||||
uint32_t gps_time = UtcTime() -315964800 +18 +1; // Time at RX1
|
||||
uint32_t gps_time = UtcTime() -315964800 -18 +1; // Time at RX1
|
||||
mac_data[mac_data_idx++] = gps_time;
|
||||
mac_data[mac_data_idx++] = gps_time >> 8;
|
||||
mac_data[mac_data_idx++] = gps_time >> 16;
|
||||
|
|
Loading…
Reference in New Issue