mirror of
https://github.com/nopnop2002/esp-idf-mpr121.git
synced 2025-12-18 02:14:31 +03:00
Added support for new i2c drivers
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
set(component_srcs "mpr121.c")
|
||||
|
||||
# get IDF version for comparison
|
||||
set(idf_version "${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}")
|
||||
|
||||
if(idf_version VERSION_GREATER_EQUAL "5.2")
|
||||
if(CONFIG_LEGACY_DRIVER)
|
||||
list(APPEND component_srcs "i2c_legacy.c")
|
||||
else()
|
||||
list(APPEND component_srcs "i2c_new.c")
|
||||
endif()
|
||||
else()
|
||||
list(APPEND component_srcs "i2c_legacy.c")
|
||||
endif()
|
||||
|
||||
idf_component_register(SRCS "${component_srcs}" PRIV_REQUIRES driver INCLUDE_DIRS ".")
|
||||
|
||||
Reference in New Issue
Block a user