esp-idf/components/driver/CMakeLists.txt

67 wiersze
1.8 KiB
CMake
Czysty Zwykły widok Historia

2020-07-29 05:13:51 +00:00
idf_build_get_property(target IDF_TARGET)
2020-01-17 03:47:08 +00:00
set(srcs
"adc_common.c"
"dac_common.c"
2020-05-11 11:50:17 +00:00
"dedic_gpio.c"
"gpio.c"
"i2c.c"
"i2s.c"
"ledc.c"
"pcnt.c"
"periph_ctrl.c"
"rmt.c"
2019-07-25 15:11:31 +00:00
"rtc_io.c"
"rtc_module.c"
"sdspi_crc.c"
"sdspi_host.c"
"sdspi_transaction.c"
"sigmadelta.c"
"spi_common.c"
"spi_master.c"
"spi_slave.c"
"spi_bus_lock.c"
"timer.c"
2019-11-27 12:08:44 +00:00
"touch_sensor_common.c"
"twai.c"
"uart.c")
2020-07-29 05:13:51 +00:00
set(includes "include" "${target}/include")
2020-07-29 05:13:51 +00:00
if(${target} STREQUAL "esp32")
2019-06-06 09:00:03 +00:00
# SDMMC and MCPWM are in ESP32 only.
list(APPEND srcs "mcpwm.c"
"sdio_slave.c"
"sdmmc_host.c"
2019-11-27 12:08:44 +00:00
"sdmmc_transaction.c"
"esp32/touch_sensor.c"
"esp32/adc.c"
"esp32/dac.c")
2019-11-27 12:08:44 +00:00
list(APPEND includes "esp32/include")
endif()
2020-07-29 05:13:51 +00:00
if(${target} STREQUAL "esp32s2")
2020-01-17 03:47:08 +00:00
list(APPEND srcs "esp32s2/rtc_tempsensor.c"
"esp32s2/touch_sensor.c"
"esp32s2/adc.c"
"esp32s2/adc2_init_cal.c"
"spi_slave_hd.c"
"esp32s2/dac.c")
2020-01-17 03:47:08 +00:00
list(APPEND includes "esp32s2/include")
2019-06-20 08:13:47 +00:00
endif()
2020-09-08 09:05:49 +00:00
if(${target} STREQUAL "esp32s3")
list(APPEND srcs "spi_slave_hd.c"
)
endif()
idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ${includes}
PRIV_INCLUDE_DIRS "include/driver"
PRIV_REQUIRES efuse esp_pm esp_timer esp_ipc
2020-11-10 06:51:08 +00:00
REQUIRES esp_ringbuf freertos soc hal)
# (REQUIRES cannot hide soc headers, since many arguments in the driver headers are chip-dependent)
2019-11-05 11:20:26 +00:00
# uses C11 atomic feature
set_source_files_properties(spi_master.c PROPERTIES COMPILE_FLAGS -std=gnu11)