diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a0ef6beb..071ba60c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file. ## [15.2.0.6] ### Added - Support for Sensirion SEN66 indoor air quality sensor (#24386) +- Support for I2C FM24Cxx FRAM block read/write/format commands (#24457) ### Breaking Changed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 2ceed4b7b..c7e99888a 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -118,6 +118,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - Support for Adafruit I2C QT Rotary Encoder [#24270](https://github.com/arendst/Tasmota/issues/24270) - Support for RX8025T RTC [#24445](https://github.com/arendst/Tasmota/issues/24445) - Support for Sensirion SEN66 indoor air quality sensor [#24386](https://github.com/arendst/Tasmota/issues/24386) +- Support for I2C FM24Cxx FRAM block read/write/format commands [#24457](https://github.com/arendst/Tasmota/issues/24457) - ESP32 support SPI bus2 for Ethernet and SDCard [#24433](https://github.com/arendst/Tasmota/issues/24433) - Improv USB CDC connected devices - Dingtian `SetOption81 1` to invert input and `SetOption133 1` to invert output [#24364](https://github.com/arendst/Tasmota/issues/24364) diff --git a/tasmota/tasmota_support/support_features.ino b/tasmota/tasmota_support/support_features.ino index f59d5d6bd..0e0160b16 100644 --- a/tasmota/tasmota_support/support_features.ino +++ b/tasmota/tasmota_support/support_features.ino @@ -967,7 +967,9 @@ constexpr uint32_t feature[] = { #if defined(USE_I2C) && defined(USE_SEN6X) 0x00200000 | // xsns_119_sen6x.ino #endif -// 0x00400000 | // +#if defined(USE_I2C) && defined(USE_FM24CXX) + 0x00400000 | // xdrv_93_fm24cxx.ino +#endif // 0x00800000 | // // 0x01000000 | // // 0x02000000 | // diff --git a/tools/decode-status.py b/tools/decode-status.py index d90fc29fd..b15af9e70 100644 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -313,7 +313,7 @@ a_features = [[ "USE_HX711_M5SCALES","USE_RX8010","USE_PCF85063","USE_ESP32_TWAI", "USE_C8_CO2_5K","USE_WIZMOTE","USE_V9240","USE_TELNET", "USE_XYZMODEM","USE_WIREGUARD","USE_AP33772S","USE_VID6608", - "USE_AGS02MA","USE_SEN6X","","", + "USE_AGS02MA","USE_SEN6X","USE_FM24CXX","", "","","","", "","","","" ]]