2019-09-09 12:56:46 +00:00
|
|
|
set(srcs
|
|
|
|
"adc.c"
|
2019-06-21 06:29:32 +00:00
|
|
|
"can.c"
|
2019-07-19 13:20:16 +00:00
|
|
|
"dac.c"
|
2019-04-28 07:38:23 +00:00
|
|
|
"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"
|
2019-04-28 07:38:23 +00:00
|
|
|
"rtc_module.c"
|
|
|
|
"sdspi_crc.c"
|
|
|
|
"sdspi_host.c"
|
|
|
|
"sdspi_transaction.c"
|
|
|
|
"sigmadelta.c"
|
|
|
|
"spi_common.c"
|
|
|
|
"spi_master.c"
|
|
|
|
"spi_slave.c"
|
|
|
|
"timer.c"
|
2019-11-27 12:08:44 +00:00
|
|
|
"touch_sensor_common.c"
|
2019-04-28 07:38:23 +00:00
|
|
|
"uart.c")
|
2019-06-12 07:53:57 +00:00
|
|
|
|
2019-08-16 09:06:34 +00:00
|
|
|
set(includes "include")
|
|
|
|
|
2019-08-18 05:27:09 +00:00
|
|
|
if(IDF_TARGET STREQUAL "esp32")
|
2019-06-06 09:00:03 +00:00
|
|
|
# SDMMC and MCPWM are in ESP32 only.
|
2019-08-08 03:44:24 +00:00
|
|
|
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")
|
|
|
|
list(APPEND includes "esp32/include")
|
2019-06-12 07:53:57 +00:00
|
|
|
endif()
|
|
|
|
|
2019-08-18 05:27:09 +00:00
|
|
|
if(IDF_TARGET STREQUAL "esp32s2beta")
|
2019-08-16 09:06:34 +00:00
|
|
|
list(APPEND srcs "esp32s2beta/rtc_tempsensor.c"
|
2019-11-27 12:08:44 +00:00
|
|
|
"esp32s2beta/touch_sensor.c")
|
2019-08-16 09:06:34 +00:00
|
|
|
# currently only S2 beta has its own target-specific includes
|
|
|
|
list(APPEND includes "esp32s2beta/include")
|
2019-06-20 08:13:47 +00:00
|
|
|
endif()
|
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2019-08-16 09:06:34 +00:00
|
|
|
INCLUDE_DIRS ${includes}
|
2019-04-28 07:38:23 +00:00
|
|
|
PRIV_INCLUDE_DIRS "include/driver"
|
2019-11-21 13:10:46 +00:00
|
|
|
PRIV_REQUIRES efuse
|
2019-04-28 07:38:23 +00:00
|
|
|
REQUIRES esp_ringbuf soc) #cannot totally hide soc headers, since there are a lot arguments in the driver are chip-dependent
|
2019-03-08 06:57:00 +00:00
|
|
|
|
2019-11-05 11:20:26 +00:00
|
|
|
# uses C11 atomic feature
|
|
|
|
set_source_files_properties(spi_master.c PROPERTIES COMPILE_FLAGS -std=gnu11)
|