kopia lustrzana https://github.com/espressif/esp-idf
104 wiersze
3.3 KiB
CMake
104 wiersze
3.3 KiB
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
set(srcs "wdt_hal_iram.c"
|
|
"mpu_hal.c")
|
|
set(includes "${target}/include" "include")
|
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
list(APPEND srcs
|
|
"cpu_hal.c"
|
|
"rmt_hal.c"
|
|
"rtc_io_hal.c"
|
|
"spi_hal.c"
|
|
"spi_hal_iram.c"
|
|
"spi_slave_hal.c"
|
|
"spi_slave_hal_iram.c"
|
|
"i2s_hal.c"
|
|
"sigmadelta_hal.c"
|
|
"timer_hal.c"
|
|
"ledc_hal.c"
|
|
"ledc_hal_iram.c"
|
|
"i2c_hal.c"
|
|
"i2c_hal_iram.c"
|
|
"gpio_hal.c"
|
|
"uart_hal.c"
|
|
"uart_hal_iram.c"
|
|
"spi_flash_hal.c"
|
|
"spi_flash_hal_iram.c"
|
|
"soc_hal.c"
|
|
"interrupt_controller_hal.c"
|
|
"sha_hal.c"
|
|
"aes_hal.c"
|
|
"twai_hal.c"
|
|
"twai_hal_iram.c"
|
|
"adc_hal.c")
|
|
|
|
if(${target} STREQUAL "esp32")
|
|
list(APPEND srcs
|
|
"dac_hal.c"
|
|
"mcpwm_hal.c"
|
|
"pcnt_hal.c"
|
|
"sdio_slave_hal.c"
|
|
"touch_sensor_hal.c"
|
|
"esp32/adc_hal.c"
|
|
"esp32/brownout_hal.c"
|
|
"esp32/interrupt_descriptor_table.c"
|
|
"esp32/touch_sensor_hal.c"
|
|
"esp32/gpio_hal_workaround.c")
|
|
if(NOT BOOTLOADER_BUILD AND CONFIG_ETH_USE_ESP32_EMAC)
|
|
list(APPEND srcs "esp32/emac_hal.c")
|
|
endif()
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32s2")
|
|
list(APPEND srcs
|
|
"dac_hal.c"
|
|
"pcnt_hal.c"
|
|
"spi_flash_hal_gpspi.c"
|
|
"spi_slave_hd_hal.c"
|
|
"touch_sensor_hal.c"
|
|
"esp32s2/adc_hal.c"
|
|
"esp32s2/brownout_hal.c"
|
|
"esp32s2/cp_dma_hal.c"
|
|
"esp32s2/systimer_hal.c"
|
|
"esp32s2/touch_sensor_hal.c"
|
|
"esp32s2/dac_hal.c"
|
|
"esp32s2/interrupt_descriptor_table.c"
|
|
"esp32s2/usb_hal.c"
|
|
"esp32s2/usbh_hal.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32s3")
|
|
list(APPEND srcs
|
|
"dac_hal.c"
|
|
"gdma_hal.c"
|
|
"pcnt_hal.c"
|
|
"spi_flash_hal_gpspi.c"
|
|
"spi_slave_hd_hal.c"
|
|
"touch_sensor_hal.c"
|
|
"esp32s3/brownout_hal.c"
|
|
"esp32s3/interrupt_descriptor_table.c"
|
|
"esp32s3/systimer_hal.c"
|
|
"esp32s3/touch_sensor_hal.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32c3")
|
|
list(APPEND srcs
|
|
"ds_hal.c"
|
|
"gdma_hal.c"
|
|
"esp32c3/adc_hal.c"
|
|
"esp32c3/brownout_hal.c"
|
|
"esp32c3/systimer_hal.c"
|
|
"esp32c3/hmac_hal.c"
|
|
"spi_flash_hal_gpspi.c"
|
|
"spi_slave_hd_hal.c"
|
|
"esp32c3/rtc_cntl_hal.c")
|
|
endif()
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${includes}
|
|
PRIV_INCLUDE_DIRS ${priv_include}
|
|
REQUIRES soc
|
|
LDFRAGMENTS linker.lf)
|