diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7aa993c62c..74a4d7c7a2e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,8 @@ All notable changes to this project will be documented in this file. ## [13.4.0.2] ### Added - Berry `path.rename()` (#20840) -- HASPmota support for spangroup (styled text) -- HASPmota support for led +- HASPmota support for spangroup (styled text) (#20852) +- HASPmota support for led (#20857) ### Breaking Changed - Drop support for old (insecure) fingerprint format (#20842) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index b9dec6ee3ce4..e7d452df6579 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -141,6 +141,8 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - LVGL make lv_touch_3_buttons more responsive [#20728](https://github.com/arendst/Tasmota/issues/20728) - HASPmota fix and improve demo with pixel-perfect fonts [#20734](https://github.com/arendst/Tasmota/issues/20734) - HASPmota more attributes [#20744](https://github.com/arendst/Tasmota/issues/20744) +- HASPmota support for spangroup (styled text) [#20852](https://github.com/arendst/Tasmota/issues/20852) +- HASPmota support for led [#20857](https://github.com/arendst/Tasmota/issues/20857) ### Fixed - Shutter inverted using internal commands [#20752](https://github.com/arendst/Tasmota/issues/20752) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino b/tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino index 8295cc45a672..97daf3f17f37 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino @@ -357,7 +357,7 @@ bool TfsFileExists(const char *fname){ bool yes = ffsp->exists(fname); if (!yes) { - AddLog(LOG_LEVEL_DEBUG, PSTR("TFS: File '%s' not found"), fname +1); // Skip leading slash + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("TFS: File '%s' not found"), fname +1); // Skip leading slash } return yes; } @@ -431,7 +431,7 @@ bool TfsLoadFile(const char *fname, uint8_t *buf, uint32_t len) { File file = ffsp->open(fname, "r"); if (!file) { - AddLog(LOG_LEVEL_INFO, PSTR("TFS: File '%s' not found"), fname +1); // Skip leading slash + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("TFS: File '%s' not found"), fname +1); // Skip leading slash return false; } diff --git a/tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino b/tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino index 87ae122a7bb6..7f11df7a29aa 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino @@ -211,13 +211,13 @@ void EthernetInit(void) { if (Settings->eth_type < 7) { // CONFIG_ETH_USE_ESP32_EMAC if (!PinUsed(GPIO_ETH_PHY_MDC) && !PinUsed(GPIO_ETH_PHY_MDIO)) { // && should be || but keep for backward compatibility - AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_ETH "No ETH MDC and ETH MDIO GPIO defined")); + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR(D_LOG_ETH "No ETH MDC and ETH MDIO GPIO defined")); return; } } else { // ETH_SPI_SUPPORTS_CUSTOM if (!PinUsed(GPIO_ETH_PHY_MDC) || !PinUsed(GPIO_ETH_PHY_MDIO) || !PinUsed(GPIO_ETH_PHY_POWER)) { - AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_ETH "No ETH MDC (SPI CS), ETH MDIO (SPI IRQ) and ETH POWER (SPI RST) GPIO defined")); + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR(D_LOG_ETH "No ETH MDC (SPI CS), ETH MDIO (SPI IRQ) and ETH POWER (SPI RST) GPIO defined")); return; } }