2024-04-08 08:08:23 -04:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2023-12-12 03:46:27 -05:00
|
|
|
set(srcs)
|
|
|
|
set(include "include")
|
|
|
|
|
|
|
|
# I2C related source files
|
|
|
|
if(CONFIG_SOC_I2C_SUPPORTED)
|
|
|
|
list(APPEND srcs
|
|
|
|
"i2c_master.c"
|
|
|
|
"i2c_common.c"
|
|
|
|
)
|
|
|
|
if(CONFIG_SOC_I2C_SUPPORT_SLAVE)
|
|
|
|
list(APPEND srcs "i2c_slave.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
2024-04-08 08:08:23 -04:00
|
|
|
if(${target} STREQUAL "linux")
|
|
|
|
set(priv_requires esp_ringbuf)
|
|
|
|
else()
|
|
|
|
set(priv_requires esp_driver_gpio esp_pm esp_ringbuf)
|
|
|
|
endif()
|
|
|
|
|
2023-12-12 03:46:27 -05:00
|
|
|
idf_component_register(SRCS ${srcs}
|
|
|
|
INCLUDE_DIRS ${include}
|
2024-04-08 08:08:23 -04:00
|
|
|
PRIV_REQUIRES "${priv_requires}"
|
2023-12-12 03:46:27 -05:00
|
|
|
LDFRAGMENTS "linker.lf"
|
|
|
|
)
|