Skip to content

Commit 07a1a98

Browse files
committed
Update change logs
1 parent e5a6cad commit 07a1a98

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
66
## [15.1.0.3]
77
### Added
88
- Support for ESP32-P4 rev.3 (#24146)
9+
- Support for Analog Gauges (#24153)
910

1011
### Breaking Changed
1112

@@ -15,6 +16,7 @@ All notable changes to this project will be documented in this file.
1516
### Fixed
1617
- ESP32-P4 Hosted MCU updated to v2.6.6 solving WiFi boot issues (#24146)
1718
- ESP32-Solo1 using pre-compiled Arduino libraries (#24146)
19+
- PCA9685 V2 driver PWMTO fading logic and overflow (#24159)
1820

1921
### Removed
2022

RELEASENOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
115115
## Changelog v15.1.0.3
116116
### Added
117117
- Support for ESP32-P4 rev.3 [#24146](https://github.com/arendst/Tasmota/issues/24118)
118+
- Support for Analog Gauges [#24153](https://github.com/arendst/Tasmota/issues/24153)
118119
- Commands `DaliSend` and `DaliQuery` allow extended commands with prefix for DeviceType defaulting to DT6
119120
- ESP8266 GPIOViewer memory map if enabled with `#define GV_USE_ESPINFO`
120121
- HostedMCU file update using command `HostedLoad <version>|<filename>`
@@ -142,6 +143,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
142143
- InfluxDb receives IPAddress as a value regression from v15.0.1.3 [#24031](https://github.com/arendst/Tasmota/issues/24031)
143144
- Scripter UDP and switch case [#24060](https://github.com/arendst/Tasmota/issues/24060)
144145
- TuyaMCU v1 soft lock when WIFI_SELECT / WIFI_RESET is initiated [#24063](https://github.com/arendst/Tasmota/issues/24063)
146+
- PCA9685 V2 driver PWMTO fading logic and overflow [#24159](https://github.com/arendst/Tasmota/issues/24159)
145147
- DALI protocol errors
146148
- TLS fix ECDSA and add `SetOption165 1` to enable ECDSA in addition to RSA [#24000](https://github.com/arendst/Tasmota/issues/24000)
147149
- ESP32-P4 Hosted MCU updated to v2.6.6 solving WiFi boot issues [#24146](https://github.com/arendst/Tasmota/issues/24118)

tasmota/tasmota_support/support_features.ino

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ constexpr uint32_t feature[] = {
947947
0x00004000 | // xnrg_25_v9240.ino
948948
#endif
949949
#ifdef USE_TELNET
950-
0x00008000 | // xdrv_80_telnet.ino
950+
0x00008000 | // xdrv_78_telnet.ino
951951
#endif
952952
#ifdef USE_XYZMODEM
953953
0x00010000 | // xdrv_120_xyzmodem.ino
@@ -958,7 +958,9 @@ constexpr uint32_t feature[] = {
958958
#if defined(USE_I2C) && defined(USE_AP33772S)
959959
0x00040000 | // xdrv_119_i2c_ap33772s
960960
#endif
961-
// 0x00080000 | //
961+
#ifdef USE_VID6608
962+
0x00080000 | // xdrv_92_vid6608.ino
963+
#endif
962964
// 0x00100000 | //
963965
// 0x00200000 | //
964966
// 0x00400000 | //

tools/decode-status.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@
312312
"USE_SPI_LORA","USE_SPL06_007","USE_QMP6988","USE_WOOLIIS",
313313
"USE_HX711_M5SCALES","USE_RX8010","USE_PCF85063","USE_ESP32_TWAI",
314314
"USE_C8_CO2_5K","USE_WIZMOTE","USE_V9240","USE_TELNET",
315-
"USE_XYZMODEM","USE_WIREGUARD","USE_AP33772S","",
315+
"USE_XYZMODEM","USE_WIREGUARD","USE_AP33772S","USE_VID6608",
316316
"","","","",
317317
"","","","",
318318
"","","",""
@@ -343,7 +343,7 @@
343343
obj = json.load(fp)
344344

345345
def StartDecode():
346-
print ("\n*** decode-status.py v14.6.0.2 by Theo Arends and Jacek Ziolkowski ***")
346+
print ("\n*** decode-status.py v15.1.0.3 by Theo Arends and Jacek Ziolkowski ***")
347347

348348
# print("Decoding\n{}".format(obj))
349349

0 commit comments

Comments
 (0)