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"
|
|
|
|
"i2c.c"
|
|
|
|
"i2s.c"
|
|
|
|
"ledc.c"
|
|
|
|
"pcnt.c"
|
|
|
|
"periph_ctrl.c"
|
|
|
|
"rmt.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"
|
|
|
|
"sigmadelta.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
|
|
|
"timer.c"
|
2021-01-13 21:44:59 -05:00
|
|
|
"twai.c"
|
2019-04-28 03:38:23 -04:00
|
|
|
"uart.c")
|
2019-06-12 03:53:57 -04:00
|
|
|
|
2021-01-18 08:59:18 -05:00
|
|
|
set(includes "include" "${target}/include")
|
2019-08-16 05:06:34 -04:00
|
|
|
|
2020-07-29 01:13:51 -04:00
|
|
|
if(${target} STREQUAL "esp32")
|
2019-06-06 05:00:03 -04:00
|
|
|
# SDMMC and MCPWM are in ESP32 only.
|
2020-12-16 04:03:48 -05:00
|
|
|
list(APPEND srcs "adc_common.c"
|
|
|
|
"dac_common.c"
|
|
|
|
"mcpwm.c"
|
2019-08-07 23:44:24 -04:00
|
|
|
"sdio_slave.c"
|
|
|
|
"sdmmc_host.c"
|
2019-11-27 07:08:44 -05:00
|
|
|
"sdmmc_transaction.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"
|
2021-12-21 22:17:42 -05:00
|
|
|
"adc.c"
|
2020-04-08 09:56:14 -04:00
|
|
|
"esp32/adc.c"
|
2021-12-21 22:17:42 -05:00
|
|
|
"adc_deprecated.c"
|
2020-04-08 09:56:14 -04: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")
|
|
|
|
list(APPEND srcs "adc_common.c"
|
|
|
|
"dac_common.c"
|
|
|
|
"dedic_gpio.c"
|
|
|
|
"spi_slave_hd.c"
|
|
|
|
"touch_sensor_common.c"
|
|
|
|
"esp32s2/rtc_tempsensor.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-21 22:17:42 -05:00
|
|
|
"adc.c"
|
|
|
|
"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")
|
2020-12-16 04:03:48 -05:00
|
|
|
list(APPEND srcs "adc_common.c"
|
2021-12-21 22:17:42 -05:00
|
|
|
"adc.c"
|
2020-12-16 04:03:48 -05:00
|
|
|
"dedic_gpio.c"
|
2020-12-09 07:29:26 -05:00
|
|
|
"gdma.c"
|
2021-01-04 15:05:27 -05:00
|
|
|
"sdmmc_host.c"
|
|
|
|
"sdmmc_transaction.c"
|
2021-01-07 04:36:54 -05:00
|
|
|
"mcpwm.c"
|
2021-07-28 21:57:47 -04:00
|
|
|
"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"
|
2021-09-06 09:45:08 -04:00
|
|
|
"esp32s3/touch_sensor.c"
|
2021-06-22 09:53:16 -04:00
|
|
|
)
|
2020-09-08 05:05:49 -04:00
|
|
|
endif()
|
|
|
|
|
2020-12-16 04:03:48 -05:00
|
|
|
if(IDF_TARGET STREQUAL "esp32c3")
|
2020-12-09 07:29:26 -05:00
|
|
|
list(APPEND srcs "gdma.c"
|
|
|
|
"spi_slave_hd.c"
|
2021-01-31 12:12:28 -05:00
|
|
|
"adc_common.c"
|
2021-08-27 00:18:12 -04:00
|
|
|
"dedic_gpio.c"
|
2021-04-23 03:46:02 -04:00
|
|
|
"usb_serial_jtag.c"
|
2021-12-21 22:17:42 -05:00
|
|
|
"adc.c"
|
2021-01-12 18:45:57 -05:00
|
|
|
"esp32c3/adc2_init_cal.c"
|
|
|
|
"esp32c3/rtc_tempsensor.c")
|
2020-12-16 04:03:48 -05:00
|
|
|
endif()
|
|
|
|
|
2021-06-09 22:28:23 -04:00
|
|
|
if(IDF_TARGET STREQUAL "esp32h2")
|
|
|
|
list(APPEND srcs "gdma.c"
|
|
|
|
"spi_slave_hd.c"
|
|
|
|
"adc_common.c"
|
2021-08-27 00:18:12 -04:00
|
|
|
"dedic_gpio.c"
|
2021-12-21 22:17:42 -05:00
|
|
|
"adc.c"
|
2021-06-09 22:28:23 -04:00
|
|
|
"esp32h2/rtc_tempsensor.c")
|
|
|
|
endif()
|
|
|
|
|
2019-04-28 03:38:23 -04:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2019-08-16 05:06:34 -04:00
|
|
|
INCLUDE_DIRS ${includes}
|
2019-04-28 03:38:23 -04:00
|
|
|
PRIV_INCLUDE_DIRS "include/driver"
|
2021-01-25 23:54:26 -05:00
|
|
|
PRIV_REQUIRES efuse esp_timer esp_ipc
|
2021-03-24 22:24:37 -04:00
|
|
|
REQUIRES esp_pm esp_ringbuf freertos soc hal esp_hw_support
|
|
|
|
LDFRAGMENTS linker.lf)
|
2020-11-10 01:51:08 -05:00
|
|
|
# (REQUIRES cannot hide soc headers, since many arguments in the driver headers are chip-dependent)
|
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)
|