2020-07-29 01:13:51 -04:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2020-01-16 22:47:08 -05:00
|
|
|
set(srcs
|
2019-04-28 03:38:23 -04:00
|
|
|
"gpio.c"
|
2022-01-02 03:14:17 -05:00
|
|
|
"gptimer.c"
|
2019-04-28 03:38:23 -04:00
|
|
|
"i2c.c"
|
|
|
|
"ledc.c"
|
2022-01-02 03:14:17 -05:00
|
|
|
"legacy_new_driver_coexist.c"
|
2019-04-28 03:38:23 -04:00
|
|
|
"periph_ctrl.c"
|
2019-07-25 11:11:31 -04:00
|
|
|
"rtc_io.c"
|
2019-04-28 03:38:23 -04:00
|
|
|
"rtc_module.c"
|
|
|
|
"sdspi_crc.c"
|
|
|
|
"sdspi_host.c"
|
|
|
|
"sdspi_transaction.c"
|
|
|
|
"spi_common.c"
|
|
|
|
"spi_master.c"
|
|
|
|
"spi_slave.c"
|
2019-10-24 07:00:26 -04:00
|
|
|
"spi_bus_lock.c"
|
2019-04-28 03:38:23 -04:00
|
|
|
"uart.c")
|
2019-06-12 03:53:57 -04:00
|
|
|
|
2022-03-20 22:57:58 -04:00
|
|
|
# deprecated source files
|
|
|
|
list(APPEND srcs "deprecated/timer_legacy.c")
|
|
|
|
|
2022-03-04 05:04:20 -05:00
|
|
|
set(includes "include" "deprecated")
|
|
|
|
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${target}/include")
|
|
|
|
list(APPEND includes "${target}/include")
|
|
|
|
endif()
|
2019-08-16 05:06:34 -04:00
|
|
|
|
2021-12-15 01:15:32 -05:00
|
|
|
if(CONFIG_SOC_ADC_SUPPORTED)
|
|
|
|
list(APPEND srcs
|
|
|
|
"adc_common.c"
|
|
|
|
"adc.c")
|
|
|
|
endif()
|
|
|
|
|
2021-11-05 05:23:24 -04:00
|
|
|
if(CONFIG_SOC_MCPWM_SUPPORTED)
|
2021-12-13 21:08:26 -05:00
|
|
|
list(APPEND srcs "mcpwm.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_GDMA_SUPPORTED)
|
|
|
|
list(APPEND srcs "gdma.c")
|
2021-11-05 05:23:24 -04:00
|
|
|
endif()
|
|
|
|
|
2021-12-01 07:15:05 -05:00
|
|
|
if(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED)
|
|
|
|
list(APPEND srcs "dedic_gpio.c")
|
|
|
|
endif()
|
|
|
|
|
2021-12-23 22:10:38 -05:00
|
|
|
if(CONFIG_SOC_SIGMADELTA_SUPPORTED)
|
|
|
|
list(APPEND srcs "sigmadelta.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_RMT_SUPPORTED)
|
|
|
|
list(APPEND srcs "rmt.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_PCNT_SUPPORTED)
|
2022-03-20 22:57:58 -04:00
|
|
|
list(APPEND srcs "pulse_cnt.c" "deprecated/pcnt_legacy.c")
|
2021-12-23 22:10:38 -05:00
|
|
|
endif()
|
|
|
|
|
2022-02-08 15:22:36 -05:00
|
|
|
if(CONFIG_SOC_SDMMC_HOST_SUPPORTED)
|
|
|
|
list(APPEND srcs "sdmmc_transaction.c" "sdmmc_host.c")
|
|
|
|
endif()
|
|
|
|
|
2022-02-15 21:22:46 -05:00
|
|
|
if(CONFIG_SOC_I2S_SUPPORTED)
|
|
|
|
list(APPEND srcs "i2s.c")
|
|
|
|
endif()
|
|
|
|
|
2022-03-04 05:04:20 -05:00
|
|
|
if(CONFIG_SOC_TEMP_SENSOR_SUPPORTED)
|
|
|
|
list(APPEND srcs "temperature_sensor.c"
|
2022-03-20 22:57:58 -04:00
|
|
|
"deprecated/rtc_temperature_legacy.c")
|
2022-03-04 05:04:20 -05:00
|
|
|
endif()
|
|
|
|
|
2022-02-15 21:22:46 -05:00
|
|
|
if(CONFIG_SOC_TWAI_SUPPORTED)
|
|
|
|
list(APPEND srcs "twai.c")
|
|
|
|
endif()
|
2021-12-23 22:10:38 -05:00
|
|
|
|
2020-07-29 01:13:51 -04:00
|
|
|
if(${target} STREQUAL "esp32")
|
2021-12-15 01:15:32 -05:00
|
|
|
list(APPEND srcs "dac_common.c"
|
2019-08-07 23:44:24 -04:00
|
|
|
"sdio_slave.c"
|
2020-12-16 04:03:48 -05:00
|
|
|
"touch_sensor_common.c"
|
2020-02-25 09:19:48 -05:00
|
|
|
"esp32/touch_sensor.c"
|
2020-04-08 09:56:14 -04:00
|
|
|
"esp32/adc.c"
|
2021-12-15 01:15:32 -05:00
|
|
|
"adc_deprecated.c"
|
2022-02-15 21:22:46 -05:00
|
|
|
"esp32/dac.c")
|
2019-06-12 03:53:57 -04:00
|
|
|
endif()
|
|
|
|
|
2020-12-16 04:03:48 -05:00
|
|
|
if(IDF_TARGET STREQUAL "esp32s2")
|
2021-12-15 01:15:32 -05:00
|
|
|
list(APPEND srcs "dac_common.c"
|
2020-12-16 04:03:48 -05:00
|
|
|
"spi_slave_hd.c"
|
|
|
|
"touch_sensor_common.c"
|
2020-02-25 09:19:48 -05:00
|
|
|
"esp32s2/touch_sensor.c"
|
2020-04-01 23:20:38 -04:00
|
|
|
"esp32s2/adc.c"
|
2021-12-15 01:15:32 -05:00
|
|
|
"adc_deprecated.c"
|
2020-04-29 04:20:40 -04:00
|
|
|
"esp32s2/adc2_init_cal.c"
|
2020-04-08 09:56:14 -04:00
|
|
|
"esp32s2/dac.c")
|
2019-06-20 04:13:47 -04:00
|
|
|
endif()
|
|
|
|
|
2020-09-08 05:05:49 -04:00
|
|
|
if(${target} STREQUAL "esp32s3")
|
2022-02-08 15:22:36 -05:00
|
|
|
list(APPEND srcs "usb_serial_jtag.c"
|
2020-12-16 04:03:48 -05:00
|
|
|
"spi_slave_hd.c"
|
2021-06-22 09:53:16 -04:00
|
|
|
"touch_sensor_common.c"
|
2022-02-15 21:22:46 -05:00
|
|
|
"esp32s3/touch_sensor.c")
|
2020-09-08 05:05:49 -04:00
|
|
|
endif()
|
|
|
|
|
2020-12-16 04:03:48 -05:00
|
|
|
if(IDF_TARGET STREQUAL "esp32c3")
|
2021-12-13 21:08:26 -05:00
|
|
|
list(APPEND srcs "spi_slave_hd.c"
|
2021-04-23 03:46:02 -04:00
|
|
|
"usb_serial_jtag.c"
|
2022-03-04 05:04:20 -05:00
|
|
|
"esp32c3/adc2_init_cal.c")
|
2020-12-16 04:03:48 -05:00
|
|
|
endif()
|
|
|
|
|
2021-06-09 22:28:23 -04:00
|
|
|
if(IDF_TARGET STREQUAL "esp32h2")
|
2022-03-04 05:04:20 -05:00
|
|
|
list(APPEND srcs "spi_slave_hd.c")
|
2021-11-06 05:26:37 -04:00
|
|
|
endif()
|
|
|
|
|
2022-01-17 21:32:56 -05:00
|
|
|
if(IDF_TARGET STREQUAL "esp32c2")
|
2021-12-23 22:10:38 -05:00
|
|
|
list(APPEND srcs "spi_slave_hd.c")
|
2021-06-09 22:28:23 -04:00
|
|
|
endif()
|
|
|
|
|
2022-01-28 06:47:04 -05: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)
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
INCLUDE_DIRS ${includes}
|
|
|
|
PRIV_INCLUDE_DIRS "include/driver"
|
|
|
|
PRIV_REQUIRES efuse esp_timer
|
|
|
|
REQUIRES esp_pm esp_ringbuf freertos soc hal esp_hw_support
|
|
|
|
LDFRAGMENTS linker.lf)
|
|
|
|
endif()
|
2019-03-08 01:57:00 -05:00
|
|
|
|
2019-11-05 06:20:26 -05:00
|
|
|
# uses C11 atomic feature
|
|
|
|
set_source_files_properties(spi_master.c PROPERTIES COMPILE_FLAGS -std=gnu11)
|