File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## v1.4.2 - 2025-8-26
4+
5+ ### Bug Fix:
6+
7+ - Remove the dependency of ` I2C_BUS_BACKWARD_CONFIG ` on the IDF version, and add CMake messages for I2C driver information.
8+
39## V1.4.1 - 2025-8-14
410
511### Bug Fix:
Original file line number Diff line number Diff line change 11if ("${IDF_VERSION_MAJOR} .${IDF_VERSION_MINOR} " VERSION_LESS "5.3" OR CONFIG_I2C_BUS_BACKWARD_CONFIG)
22 set (SRC_FILE "i2c_bus.c" )
33 set (REQ driver)
4+ message (STATUS "Using driver/i2c (SRC_FILE=i2c_bus.c, REQ=driver)" )
45else ()
56 set (SRC_FILE "i2c_bus_v2.c" )
67 set (REQ esp_driver_i2c driver)
8+ message (STATUS "Using esp_driver_i2c (SRC_FILE=i2c_bus_v2.c, REQ=esp_driver_i2c driver)" )
79endif ()
810
911if (CONFIG_I2C_BUS_SUPPORT_SOFTWARE)
Original file line number Diff line number Diff line change 11menu "Bus Options"
22
33 menu "I2C Bus Options"
4- config ESP_IDF_VERSION_FOR_I2C
5- string
6- option env="ESP_IDF_VERSION"
7-
84 config I2C_BUS_DYNAMIC_CONFIG
95 bool "enable dynamic configuration"
106 default y
@@ -22,9 +18,8 @@ menu "Bus Options"
2218 config I2C_BUS_BACKWARD_CONFIG
2319 bool "Enable backward compatibility for the I2C driver (force use of the old i2c_driver above v5.3)"
2420 default n
25- depends on ESP_IDF_VERSION_FOR_I2C >= 5.3
2621 help
27- Enable this option for backward compatibility with the old I2C driver
22+ Enable this option for backward compatibility with the old I2C driver (only valid in IDF v5.3 and above).
2823
2924 config I2C_BUS_SUPPORT_SOFTWARE
3025 bool "Enable software I2C support"
Original file line number Diff line number Diff line change 1- version : " 1.4.1 "
1+ version : " 1.4.2 "
22description : The I2C Bus Driver supports both hardware and software I2C.
33url : https://github.com/espressif/esp-iot-solution/tree/master/components/i2c_bus
44repository : https://github.com/espressif/esp-iot-solution.git
You can’t perform that action at this time.
0 commit comments