|
|
@@ -1,33 +1,35 @@
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
|
+# Always compiled source files
|
|
|
set(srcs
|
|
|
"gpio/gpio.c"
|
|
|
- "gpio/rtc_io.c"
|
|
|
"gpio/gpio_glitch_filter_ops.c"
|
|
|
- "spi_bus_lock.c"
|
|
|
- "uart.c")
|
|
|
-
|
|
|
-set(includes "include" "deprecated")
|
|
|
-if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${target}/include")
|
|
|
- list(APPEND includes "${target}/include")
|
|
|
-endif()
|
|
|
-
|
|
|
-if(CONFIG_SOC_LEDC_SUPPORTED)
|
|
|
- list(APPEND srcs "ledc.c")
|
|
|
-endif()
|
|
|
-
|
|
|
-if(CONFIG_SOC_GPTIMER_SUPPORTED)
|
|
|
- list(APPEND srcs "gptimer/gptimer.c" "deprecated/timer_legacy.c")
|
|
|
-endif()
|
|
|
-
|
|
|
-if(CONFIG_SOC_TIMER_SUPPORT_ETM)
|
|
|
- list(APPEND srcs "gptimer/gptimer_etm.c")
|
|
|
-endif()
|
|
|
-
|
|
|
-if(CONFIG_SOC_I2C_SUPPORTED)
|
|
|
- list(APPEND srcs "i2c.c")
|
|
|
-endif()
|
|
|
-
|
|
|
+ "gpio/rtc_io.c"
|
|
|
+ "spi/spi_bus_lock.c")
|
|
|
+
|
|
|
+# Always included headers
|
|
|
+set(includes "include"
|
|
|
+ "deprecated"
|
|
|
+ "dac/include"
|
|
|
+ "gpio/include"
|
|
|
+ "gptimer/include"
|
|
|
+ "i2c/include"
|
|
|
+ "i2s/include"
|
|
|
+ "ledc/include"
|
|
|
+ "mcpwm/include"
|
|
|
+ "pcnt/include"
|
|
|
+ "rmt/include"
|
|
|
+ "sdio_slave/include"
|
|
|
+ "sdmmc/include"
|
|
|
+ "sigma_delta/include"
|
|
|
+ "spi/include"
|
|
|
+ "temperature_sensor/include"
|
|
|
+ "touch_sensor/include"
|
|
|
+ "twai/include"
|
|
|
+ "uart/include"
|
|
|
+ "usb_serial_jtag/include")
|
|
|
+
|
|
|
+# ADC related source files (dprecated)
|
|
|
if(CONFIG_SOC_ADC_SUPPORTED)
|
|
|
list(APPEND srcs "deprecated/adc_legacy.c")
|
|
|
endif()
|
|
|
@@ -36,18 +38,18 @@ if(CONFIG_SOC_ADC_DMA_SUPPORTED)
|
|
|
list(APPEND srcs "deprecated/adc_dma_legacy.c")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_MCPWM_SUPPORTED)
|
|
|
- list(APPEND srcs "mcpwm/mcpwm_cap.c"
|
|
|
- "mcpwm/mcpwm_cmpr.c"
|
|
|
- "mcpwm/mcpwm_com.c"
|
|
|
- "mcpwm/mcpwm_fault.c"
|
|
|
- "mcpwm/mcpwm_gen.c"
|
|
|
- "mcpwm/mcpwm_oper.c"
|
|
|
- "mcpwm/mcpwm_sync.c"
|
|
|
- "mcpwm/mcpwm_timer.c"
|
|
|
- "deprecated/mcpwm_legacy.c")
|
|
|
+# DAC related source files
|
|
|
+if(CONFIG_SOC_DAC_SUPPORTED)
|
|
|
+ list(APPEND srcs "dac/dac_oneshot.c"
|
|
|
+ "dac/dac_cosine.c"
|
|
|
+ "dac/dac_continuous.c"
|
|
|
+ "dac/dac_common.c"
|
|
|
+ "dac/${target}/dac_dma.c"
|
|
|
+ "deprecated/dac_common_legacy.c"
|
|
|
+ "deprecated/${target}/dac_legacy.c")
|
|
|
endif()
|
|
|
|
|
|
+# GPIO related source files
|
|
|
if(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED)
|
|
|
list(APPEND srcs "gpio/dedic_gpio.c")
|
|
|
endif()
|
|
|
@@ -60,26 +62,26 @@ if(CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM GREATER 0)
|
|
|
list(APPEND srcs "gpio/gpio_flex_glitch_filter.c")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_SDM_SUPPORTED)
|
|
|
- list(APPEND srcs "sdm.c" "deprecated/sigma_delta_legacy.c")
|
|
|
-endif()
|
|
|
-
|
|
|
-if(CONFIG_SOC_RMT_SUPPORTED)
|
|
|
- list(APPEND srcs "rmt/rmt_common.c" "rmt/rmt_encoder.c" "rmt/rmt_rx.c" "rmt/rmt_tx.c" "deprecated/rmt_legacy.c")
|
|
|
+if(CONFIG_SOC_GPIO_SUPPORT_ETM)
|
|
|
+ list(APPEND srcs "gpio/gpio_etm.c")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_PCNT_SUPPORTED)
|
|
|
- list(APPEND srcs "pulse_cnt.c" "deprecated/pcnt_legacy.c")
|
|
|
+# GPTimer related source files
|
|
|
+if(CONFIG_SOC_GPTIMER_SUPPORTED)
|
|
|
+ list(APPEND srcs "gptimer/gptimer.c"
|
|
|
+ "deprecated/timer_legacy.c")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_GPIO_SUPPORT_ETM)
|
|
|
- list(APPEND srcs "gpio/gpio_etm.c")
|
|
|
+if(CONFIG_SOC_TIMER_SUPPORT_ETM)
|
|
|
+ list(APPEND srcs "gptimer/gptimer_etm.c")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_SDMMC_HOST_SUPPORTED)
|
|
|
- list(APPEND srcs "sdmmc_transaction.c" "sdmmc_host.c")
|
|
|
+# I2C related source files
|
|
|
+if(CONFIG_SOC_I2C_SUPPORTED)
|
|
|
+ list(APPEND srcs "i2c/i2c.c")
|
|
|
endif()
|
|
|
|
|
|
+# I2S related source files
|
|
|
if(CONFIG_SOC_I2S_SUPPORTED)
|
|
|
list(APPEND srcs "i2s/i2s_common.c"
|
|
|
"i2s/i2s_std.c"
|
|
|
@@ -92,52 +94,99 @@ if(CONFIG_SOC_I2S_SUPPORTED)
|
|
|
endif()
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_TEMP_SENSOR_SUPPORTED)
|
|
|
- list(APPEND srcs "temperature_sensor.c"
|
|
|
- "deprecated/rtc_temperature_legacy.c")
|
|
|
+# LEDC related source files
|
|
|
+if(CONFIG_SOC_LEDC_SUPPORTED)
|
|
|
+ list(APPEND srcs "ledc/ledc.c")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_TWAI_SUPPORTED)
|
|
|
- list(APPEND srcs "twai.c")
|
|
|
+# MCPWM related source files
|
|
|
+if(CONFIG_SOC_MCPWM_SUPPORTED)
|
|
|
+ list(APPEND srcs "mcpwm/mcpwm_cap.c"
|
|
|
+ "mcpwm/mcpwm_cmpr.c"
|
|
|
+ "mcpwm/mcpwm_com.c"
|
|
|
+ "mcpwm/mcpwm_fault.c"
|
|
|
+ "mcpwm/mcpwm_gen.c"
|
|
|
+ "mcpwm/mcpwm_oper.c"
|
|
|
+ "mcpwm/mcpwm_sync.c"
|
|
|
+ "mcpwm/mcpwm_timer.c"
|
|
|
+ "deprecated/mcpwm_legacy.c")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED)
|
|
|
- list(APPEND srcs "usb_serial_jtag.c")
|
|
|
+# PCNT related source files
|
|
|
+if(CONFIG_SOC_PCNT_SUPPORTED)
|
|
|
+ list(APPEND srcs "pcnt/pulse_cnt.c"
|
|
|
+ "deprecated/pcnt_legacy.c")
|
|
|
+endif()
|
|
|
+
|
|
|
+# RMT related source files
|
|
|
+if(CONFIG_SOC_RMT_SUPPORTED)
|
|
|
+ list(APPEND srcs "rmt/rmt_common.c"
|
|
|
+ "rmt/rmt_encoder.c"
|
|
|
+ "rmt/rmt_rx.c"
|
|
|
+ "rmt/rmt_tx.c"
|
|
|
+ "deprecated/rmt_legacy.c")
|
|
|
+endif()
|
|
|
+
|
|
|
+# SDIO Slave related source files
|
|
|
+if(CONFIG_SOC_SDIO_SLAVE_SUPPORTED)
|
|
|
+ list(APPEND srcs "sdio_slave/sdio_slave.c")
|
|
|
endif()
|
|
|
|
|
|
+# SDMMC related source files
|
|
|
+if(CONFIG_SOC_SDMMC_HOST_SUPPORTED)
|
|
|
+ list(APPEND srcs "sdmmc/sdmmc_transaction.c"
|
|
|
+ "sdmmc/sdmmc_host.c")
|
|
|
+endif()
|
|
|
+
|
|
|
+# Sigma-Delta Modulation related source files
|
|
|
+if(CONFIG_SOC_SDM_SUPPORTED)
|
|
|
+ list(APPEND srcs "sigma_delta/sdm.c"
|
|
|
+ "deprecated/sigma_delta_legacy.c")
|
|
|
+endif()
|
|
|
+
|
|
|
+# SPI related source files
|
|
|
if(CONFIG_SOC_GPSPI_SUPPORTED)
|
|
|
- list(APPEND srcs
|
|
|
- "spi_common.c"
|
|
|
- "spi_master.c"
|
|
|
- "spi_slave.c"
|
|
|
- "sdspi_crc.c"
|
|
|
- "sdspi_host.c"
|
|
|
- "sdspi_transaction.c")
|
|
|
+ list(APPEND srcs "spi/gpspi/spi_common.c"
|
|
|
+ "spi/gpspi/spi_master.c"
|
|
|
+ "spi/gpspi/spi_slave.c"
|
|
|
+ "spi/sdspi/sdspi_crc.c"
|
|
|
+ "spi/sdspi/sdspi_host.c"
|
|
|
+ "spi/sdspi/sdspi_transaction.c")
|
|
|
endif()
|
|
|
|
|
|
if(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2)
|
|
|
- list(APPEND srcs "spi_slave_hd.c")
|
|
|
+ list(APPEND srcs "spi/gpspi/spi_slave_hd.c")
|
|
|
endif()
|
|
|
|
|
|
+# Temperature Sensor related source files
|
|
|
+if(CONFIG_SOC_TEMP_SENSOR_SUPPORTED)
|
|
|
+ list(APPEND srcs "temperature_sensor/temperature_sensor.c"
|
|
|
+ "deprecated/rtc_temperature_legacy.c")
|
|
|
+endif()
|
|
|
+
|
|
|
+# Touch Sensor related source files
|
|
|
if(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED)
|
|
|
- list(APPEND srcs "touch_sensor_common.c"
|
|
|
- "${target}/touch_sensor.c")
|
|
|
+ list(APPEND srcs "touch_sensor/touch_sensor_common.c"
|
|
|
+ "touch_sensor/${target}/touch_sensor.c")
|
|
|
+ list(APPEND includes "touch_sensor/${target}/include")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_SDIO_SLAVE_SUPPORTED)
|
|
|
- list(APPEND srcs "sdio_slave.c")
|
|
|
+# TWAI related source files
|
|
|
+if(CONFIG_SOC_TWAI_SUPPORTED)
|
|
|
+ list(APPEND srcs "twai/twai.c")
|
|
|
endif()
|
|
|
|
|
|
-if(CONFIG_SOC_DAC_SUPPORTED)
|
|
|
- list(APPEND srcs "dac/dac_oneshot.c"
|
|
|
- "dac/dac_cosine.c"
|
|
|
- "dac/dac_continuous.c"
|
|
|
- "dac/dac_common.c"
|
|
|
- "dac/${target}/dac_dma.c"
|
|
|
- "deprecated/dac_common_legacy.c"
|
|
|
- "deprecated/${target}/dac_legacy.c")
|
|
|
+# UART related source files
|
|
|
+if(CONFIG_SOC_UART_SUPPORTED)
|
|
|
+ list(APPEND srcs "uart/uart.c")
|
|
|
+endif()
|
|
|
+
|
|
|
+# USB Serial JTAG related source files
|
|
|
+if(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED)
|
|
|
+ list(APPEND srcs "usb_serial_jtag/usb_serial_jtag.c")
|
|
|
endif()
|
|
|
|
|
|
+# Other source files
|
|
|
if(${target} STREQUAL "esp32")
|
|
|
list(APPEND srcs "deprecated/adc_i2s_deprecated.c")
|
|
|
endif()
|
|
|
@@ -151,7 +200,6 @@ else()
|
|
|
# Can be removed together with legacy drivers)
|
|
|
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)
|