Skip to content

Commit

Permalink
update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
arendst committed Apr 11, 2024
1 parent 0484299 commit 1b5fdb5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tasmota/tasmota_xdrv_driver/xdrv_73_8_lorawan_bridge.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1b5fdb5

Please sign in to comment.