2020-07-29 13:13:51 +08:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2023-08-28 14:02:08 +08:00
|
|
|
if(${target} STREQUAL "linux")
|
|
|
|
return() # This component is not supported by the POSIX/Linux simulator
|
|
|
|
endif()
|
|
|
|
|
2023-01-31 14:36:21 +08:00
|
|
|
# Always compiled source files
|
2023-10-19 14:38:32 +08:00
|
|
|
set(srcs)
|
2023-01-31 14:36:21 +08:00
|
|
|
|
|
|
|
# Always included headers
|
2023-11-22 10:22:29 +08:00
|
|
|
set(includes "deprecated"
|
2023-01-31 14:36:21 +08:00
|
|
|
"i2c/include"
|
|
|
|
"touch_sensor/include"
|
2024-01-02 18:08:35 +08:00
|
|
|
"twai/include")
|
2023-01-31 14:36:21 +08:00
|
|
|
|
2023-08-29 12:25:05 +08:00
|
|
|
# Always included linker fragments
|
2023-11-30 20:57:54 +08:00
|
|
|
set(ldfragments "")
|
2023-08-29 12:25:05 +08:00
|
|
|
|
2023-01-31 14:36:21 +08:00
|
|
|
# ADC related source files (dprecated)
|
2021-12-15 14:15:32 +08:00
|
|
|
if(CONFIG_SOC_ADC_SUPPORTED)
|
2022-07-15 12:52:44 +08:00
|
|
|
list(APPEND srcs "deprecated/adc_legacy.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_ADC_DMA_SUPPORTED)
|
|
|
|
list(APPEND srcs "deprecated/adc_dma_legacy.c")
|
2021-12-15 14:15:32 +08:00
|
|
|
endif()
|
|
|
|
|
2023-01-31 14:36:21 +08:00
|
|
|
# DAC related source files
|
|
|
|
if(CONFIG_SOC_DAC_SUPPORTED)
|
2023-11-20 16:38:49 +08:00
|
|
|
list(APPEND srcs "deprecated/dac_common_legacy.c"
|
2023-01-31 14:36:21 +08:00
|
|
|
"deprecated/${target}/dac_legacy.c")
|
2021-12-14 10:08:26 +08:00
|
|
|
endif()
|
|
|
|
|
2023-10-27 13:57:39 +08:00
|
|
|
# GPTimer legacy driver
|
2023-01-31 14:36:21 +08:00
|
|
|
if(CONFIG_SOC_GPTIMER_SUPPORTED)
|
2023-10-27 13:57:39 +08:00
|
|
|
list(APPEND srcs "deprecated/timer_legacy.c")
|
2022-08-22 22:03:30 +08:00
|
|
|
endif()
|
|
|
|
|
2023-01-31 14:36:21 +08:00
|
|
|
# I2C related source files
|
|
|
|
if(CONFIG_SOC_I2C_SUPPORTED)
|
2023-12-12 16:46:27 +08:00
|
|
|
list(APPEND srcs "i2c/i2c.c")
|
2022-02-08 21:22:36 +01:00
|
|
|
endif()
|
|
|
|
|
2023-01-31 14:36:21 +08:00
|
|
|
# I2S related source files
|
2022-02-16 10:22:46 +08:00
|
|
|
if(CONFIG_SOC_I2S_SUPPORTED)
|
2023-11-07 21:06:07 +08:00
|
|
|
list(APPEND srcs "deprecated/i2s_legacy.c")
|
2022-02-16 10:22:46 +08:00
|
|
|
endif()
|
|
|
|
|
2023-10-30 10:59:17 +08:00
|
|
|
# MCPWM legacy driver
|
2023-01-31 14:36:21 +08:00
|
|
|
if(CONFIG_SOC_MCPWM_SUPPORTED)
|
2023-10-30 10:59:17 +08:00
|
|
|
list(APPEND srcs "deprecated/mcpwm_legacy.c")
|
2022-02-16 10:22:46 +08:00
|
|
|
endif()
|
2021-12-24 11:10:38 +08:00
|
|
|
|
2023-10-16 11:41:02 +08:00
|
|
|
# PCNT legacy driver
|
2023-01-31 14:36:21 +08:00
|
|
|
if(CONFIG_SOC_PCNT_SUPPORTED)
|
2023-10-16 11:41:02 +08:00
|
|
|
list(APPEND srcs "deprecated/pcnt_legacy.c")
|
2023-01-31 14:36:21 +08:00
|
|
|
endif()
|
|
|
|
|
2023-11-22 10:22:29 +08:00
|
|
|
# RMT legacy driver
|
2023-01-31 14:36:21 +08:00
|
|
|
if(CONFIG_SOC_RMT_SUPPORTED)
|
2023-11-22 10:22:29 +08:00
|
|
|
list(APPEND srcs "deprecated/rmt_legacy.c")
|
2023-01-31 14:36:21 +08:00
|
|
|
endif()
|
|
|
|
|
2023-11-30 20:57:54 +08:00
|
|
|
# Sigma-Delta Modulation legacy driver
|
2023-01-31 14:36:21 +08:00
|
|
|
if(CONFIG_SOC_SDM_SUPPORTED)
|
2023-11-30 20:57:54 +08:00
|
|
|
list(APPEND srcs "deprecated/sigma_delta_legacy.c")
|
2023-01-31 14:36:21 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Temperature Sensor related source files
|
|
|
|
if(CONFIG_SOC_TEMP_SENSOR_SUPPORTED)
|
2023-11-27 12:36:02 +08:00
|
|
|
list(APPEND srcs "deprecated/rtc_temperature_legacy.c")
|
2023-01-31 14:36:21 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Touch Sensor related source files
|
2022-07-21 13:42:25 +08:00
|
|
|
if(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED)
|
2023-01-31 14:36:21 +08:00
|
|
|
list(APPEND srcs "touch_sensor/touch_sensor_common.c"
|
|
|
|
"touch_sensor/${target}/touch_sensor.c")
|
|
|
|
list(APPEND includes "touch_sensor/${target}/include")
|
2022-05-09 17:33:51 +08:00
|
|
|
endif()
|
|
|
|
|
2023-01-31 14:36:21 +08:00
|
|
|
# TWAI related source files
|
|
|
|
if(CONFIG_SOC_TWAI_SUPPORTED)
|
|
|
|
list(APPEND srcs "twai/twai.c")
|
2023-08-29 12:25:05 +08:00
|
|
|
|
|
|
|
list(APPEND ldfragments "twai/linker.lf")
|
2022-05-28 17:03:05 +08:00
|
|
|
endif()
|
|
|
|
|
2023-01-31 14:36:21 +08:00
|
|
|
# Other source files
|
2020-07-29 13:13:51 +08:00
|
|
|
if(${target} STREQUAL "esp32")
|
2022-05-24 17:26:36 +08:00
|
|
|
list(APPEND srcs "deprecated/adc_i2s_deprecated.c")
|
2019-06-20 16:13:47 +08:00
|
|
|
endif()
|
|
|
|
|
2022-01-28 19:47:04 +08:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
# Bootloader shall NOT depend on the drivers
|
|
|
|
idf_component_register()
|
|
|
|
else()
|
|
|
|
# (REQUIRES cannot hide soc headers, since many arguments in the driver headers are chip-dependent)
|
2022-07-15 12:52:44 +08:00
|
|
|
# (Legacy drivers requires `esp_adc`, due to ADC HW resource mutex logics are there.
|
|
|
|
# Can be removed together with legacy drivers)
|
2022-01-28 19:47:04 +08:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2023-08-29 12:25:05 +08:00
|
|
|
INCLUDE_DIRS ${includes}
|
2023-09-07 16:47:26 +08:00
|
|
|
PRIV_REQUIRES efuse esp_timer esp_mm
|
2023-08-29 12:25:05 +08:00
|
|
|
REQUIRES esp_pm esp_ringbuf freertos soc hal esp_hw_support
|
2023-10-16 11:41:02 +08:00
|
|
|
# for backward compatibility, the driver component needs to
|
|
|
|
# have a public dependency on other "esp_driver_foo" components
|
2023-10-30 10:59:17 +08:00
|
|
|
esp_driver_gpio esp_driver_pcnt esp_driver_gptimer esp_driver_spi esp_driver_mcpwm
|
2023-11-14 17:06:40 +08:00
|
|
|
esp_driver_ana_cmpr esp_driver_i2s esp_driver_sdmmc esp_driver_sdspi esp_driver_sdio
|
2023-12-12 16:46:27 +08:00
|
|
|
esp_driver_dac esp_driver_rmt esp_driver_tsens esp_driver_sdm esp_driver_i2c
|
2024-01-02 18:08:35 +08:00
|
|
|
esp_driver_uart esp_driver_ledc esp_driver_parlio esp_driver_usb_serial_jtag
|
2023-08-29 12:25:05 +08:00
|
|
|
LDFRAGMENTS ${ldfragments}
|
|
|
|
)
|
2022-01-28 19:47:04 +08:00
|
|
|
endif()
|