File tree Expand file tree Collapse file tree 6 files changed +26
-4
lines changed Expand file tree Collapse file tree 6 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## v4.1.4 - 2025-10-08
4+
5+ ### Fix:
6+
7+ * Fixed requires in CMake for IDF6.
8+
39## v4.1.3 - 2025-04-11
410
511### Fix:
Original file line number Diff line number Diff line change 11set (PRIVREQ esp_timer)
2- set (REQ driver)
2+ if ("${IDF_VERSION_MAJOR} .${IDF_VERSION_MINOR} " VERSION_GREATER_EQUAL "5.3" )
3+ set (REQ esp_driver_gpio)
4+ else ()
5+ set (REQ driver)
6+ endif ()
37set (SRC_FILES "button_gpio.c" "iot_button.c" "button_matrix.c" )
48
59if ("${IDF_VERSION_MAJOR} .${IDF_VERSION_MINOR} " VERSION_GREATER_EQUAL "5.0" )
Original file line number Diff line number Diff line change 1- version : " 4.1.3 "
1+ version : " 4.1.4 "
22description : GPIO and ADC and Matrix button driver
33url : https://github.com/espressif/esp-iot-solution/tree/master/components/button
44repository : https://github.com/espressif/esp-iot-solution.git
Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## v2.0.2 - 2025-10-08
4+
5+ ### Bugfix
6+
7+ * Fixed requires in CMake for IDF6.
8+
39## v2.0.1 - 2025-8-12
410
511### Bugfix
Original file line number Diff line number Diff line change @@ -8,10 +8,16 @@ set(srcs "src/led_indicator_ledc.c"
88 "src/led_convert.c"
99 )
1010
11+ if ("${IDF_VERSION_MAJOR} .${IDF_VERSION_MINOR} " VERSION_GREATER_EQUAL "5.3" )
12+ set (REQ esp_driver_ledc esp_driver_gpio)
13+ else ()
14+ set (REQ driver)
15+ endif ()
16+
1117idf_component_register( SRCS ${srcs}
1218 INCLUDE_DIRS "include"
1319 PRIV_INCLUDE_DIRS "private_include"
14- REQUIRES driver )
20+ REQUIRES ${REQ} )
1521
1622include (package_manager)
1723cu_pkg_define_version(${CMAKE_CURRENT_LIST_DIR} )
Original file line number Diff line number Diff line change 1- version : " 2.0.1 "
1+ version : " 2.0.2 "
22description : LED indicator driver
33url : https://github.com/espressif/esp-iot-solution/tree/master/components/led/led_indicator
44dependencies :
You can’t perform that action at this time.
0 commit comments