2020-07-29 13:13:51 +08:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2020-01-17 11:47:08 +08:00
|
|
|
set(srcs
|
2019-04-28 15:38:23 +08:00
|
|
|
"gpio.c"
|
2022-01-02 16:14:17 +08:00
|
|
|
"gptimer.c"
|
|
|
|
"timer_legacy.c"
|
2019-04-28 15:38:23 +08:00
|
|
|
"i2c.c"
|
|
|
|
"ledc.c"
|
2022-01-02 16:14:17 +08:00
|
|
|
"legacy_new_driver_coexist.c"
|
2019-04-28 15:38:23 +08:00
|
|
|
"periph_ctrl.c"
|
2019-07-25 23:11:31 +08:00
|
|
|
"rtc_io.c"
|
2019-04-28 15:38:23 +08: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 19:00:26 +08:00
|
|
|
"spi_bus_lock.c"
|
2019-04-28 15:38:23 +08:00
|
|
|
"uart.c")
|
2019-06-12 15:53:57 +08:00
|
|
|
|
2021-10-25 17:13:46 +08:00
|
|
|
set(includes "include" "${target}/include" "deprecated")
|
2019-08-16 19:06:34 +10:00
|
|
|
|
2021-12-15 14:15:32 +08:00
|
|
|
if(CONFIG_SOC_ADC_SUPPORTED)
|
|
|
|
list(APPEND srcs
|
|
|
|
"adc_common.c"
|
|
|
|
"adc.c")
|
|
|
|
endif()
|
|
|
|
|
2021-11-05 17:23:24 +08:00
|
|
|
if(CONFIG_SOC_MCPWM_SUPPORTED)
|
2021-12-14 10:08:26 +08:00
|
|
|
list(APPEND srcs "mcpwm.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_GDMA_SUPPORTED)
|
|
|
|
list(APPEND srcs "gdma.c")
|
2021-11-05 17:23:24 +08:00
|
|
|
endif()
|
|
|
|
|
2021-12-01 20:15:05 +08:00
|
|
|
if(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED)
|
|
|
|
list(APPEND srcs "dedic_gpio.c")
|
|
|
|
endif()
|
|
|
|
|
2021-12-24 11:10:38 +08: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)
|
|
|
|
list(APPEND srcs "pcnt.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2020-07-29 13:13:51 +08:00
|
|
|
if(${target} STREQUAL "esp32")
|
2019-06-06 17:00:03 +08:00
|
|
|
# SDMMC and MCPWM are in ESP32 only.
|
2021-12-15 14:15:32 +08:00
|
|
|
list(APPEND srcs "dac_common.c"
|
2019-08-08 13:44:24 +10:00
|
|
|
"sdio_slave.c"
|
|
|
|
"sdmmc_host.c"
|
2021-11-06 17:26:37 +08:00
|
|
|
"i2s.c"
|
2019-11-27 20:08:44 +08:00
|
|
|
"sdmmc_transaction.c"
|
2020-12-16 20:03:48 +11:00
|
|
|
"touch_sensor_common.c"
|
2020-02-25 22:19:48 +08:00
|
|
|
"esp32/touch_sensor.c"
|
2020-04-08 21:56:14 +08:00
|
|
|
"esp32/adc.c"
|
2021-12-15 14:15:32 +08:00
|
|
|
"adc_deprecated.c"
|
2021-11-06 17:26:37 +08:00
|
|
|
"esp32/dac.c"
|
|
|
|
"twai.c")
|
2019-06-12 15:53:57 +08:00
|
|
|
endif()
|
|
|
|
|
2020-12-16 20:03:48 +11:00
|
|
|
if(IDF_TARGET STREQUAL "esp32s2")
|
2021-12-15 14:15:32 +08:00
|
|
|
list(APPEND srcs "dac_common.c"
|
2020-12-16 20:03:48 +11:00
|
|
|
"spi_slave_hd.c"
|
|
|
|
"touch_sensor_common.c"
|
2021-11-06 17:26:37 +08:00
|
|
|
"i2s.c"
|
|
|
|
"twai.c"
|
2020-12-16 20:03:48 +11:00
|
|
|
"esp32s2/rtc_tempsensor.c"
|
2020-02-25 22:19:48 +08:00
|
|
|
"esp32s2/touch_sensor.c"
|
2020-04-02 11:20:38 +08:00
|
|
|
"esp32s2/adc.c"
|
2021-12-15 14:15:32 +08:00
|
|
|
"adc_deprecated.c"
|
2020-04-29 16:20:40 +08:00
|
|
|
"esp32s2/adc2_init_cal.c"
|
2020-04-08 21:56:14 +08:00
|
|
|
"esp32s2/dac.c")
|
2019-06-20 16:13:47 +08:00
|
|
|
endif()
|
|
|
|
|
2020-09-08 17:05:49 +08:00
|
|
|
if(${target} STREQUAL "esp32s3")
|
2021-12-01 20:15:05 +08:00
|
|
|
list(APPEND srcs "sdmmc_host.c"
|
2021-01-04 21:05:27 +01:00
|
|
|
"sdmmc_transaction.c"
|
2021-07-29 09:57:47 +08:00
|
|
|
"usb_serial_jtag.c"
|
2020-12-16 20:03:48 +11:00
|
|
|
"spi_slave_hd.c"
|
2021-06-22 21:53:16 +08:00
|
|
|
"touch_sensor_common.c"
|
2021-09-06 21:45:08 +08:00
|
|
|
"esp32s3/touch_sensor.c"
|
2021-11-06 17:26:37 +08:00
|
|
|
"i2s.c"
|
|
|
|
"twai.c")
|
2020-09-08 17:05:49 +08:00
|
|
|
endif()
|
|
|
|
|
2020-12-16 20:03:48 +11:00
|
|
|
if(IDF_TARGET STREQUAL "esp32c3")
|
2021-12-14 10:08:26 +08:00
|
|
|
list(APPEND srcs "spi_slave_hd.c"
|
2021-04-23 15:46:02 +08:00
|
|
|
"usb_serial_jtag.c"
|
2021-11-06 17:26:37 +08:00
|
|
|
"i2s.c"
|
2021-01-13 10:45:57 +11:00
|
|
|
"esp32c3/adc2_init_cal.c"
|
2021-11-06 17:26:37 +08:00
|
|
|
"esp32c3/rtc_tempsensor.c"
|
|
|
|
"twai.c")
|
2020-12-16 20:03:48 +11:00
|
|
|
endif()
|
|
|
|
|
2021-06-10 10:28:23 +08:00
|
|
|
if(IDF_TARGET STREQUAL "esp32h2")
|
2021-12-14 10:08:26 +08:00
|
|
|
list(APPEND srcs "spi_slave_hd.c"
|
2021-11-06 17:26:37 +08:00
|
|
|
"i2s.c"
|
|
|
|
"esp32h2/rtc_tempsensor.c"
|
|
|
|
"twai.c")
|
|
|
|
endif()
|
|
|
|
|
2022-01-18 10:32:56 +08:00
|
|
|
if(IDF_TARGET STREQUAL "esp32c2")
|
2021-12-24 11:10:38 +08:00
|
|
|
list(APPEND srcs "spi_slave_hd.c")
|
2021-06-10 10:28:23 +08:00
|
|
|
endif()
|
|
|
|
|
2019-04-28 15:38:23 +08:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2019-08-16 19:06:34 +10:00
|
|
|
INCLUDE_DIRS ${includes}
|
2019-04-28 15:38:23 +08:00
|
|
|
PRIV_INCLUDE_DIRS "include/driver"
|
2021-09-17 11:14:32 +08:00
|
|
|
PRIV_REQUIRES efuse esp_timer
|
2021-03-25 10:24:37 +08:00
|
|
|
REQUIRES esp_pm esp_ringbuf freertos soc hal esp_hw_support
|
|
|
|
LDFRAGMENTS linker.lf)
|
2020-11-10 17:51:08 +11:00
|
|
|
# (REQUIRES cannot hide soc headers, since many arguments in the driver headers are chip-dependent)
|
2019-03-08 14:57:00 +08:00
|
|
|
|
2019-11-05 12:20:26 +01:00
|
|
|
# uses C11 atomic feature
|
|
|
|
set_source_files_properties(spi_master.c PROPERTIES COMPILE_FLAGS -std=gnu11)
|