OVMS3-idf/components/soc/esp32/sources.cmake

34 lines
791 B
CMake
Raw Normal View History

2019-09-09 12:56:46 +00:00
set(SOC_SRCS "adc_periph.c"
2019-07-19 13:20:16 +00:00
"dac_periph.c"
2019-09-09 12:56:46 +00:00
"cpu_util.c"
2018-09-11 01:44:12 +00:00
"gpio_periph.c"
"rtc_clk.c"
"rtc_clk_init.c"
"rtc_init.c"
2019-07-25 15:11:31 +00:00
"rtc_io_periph.c"
2018-09-11 01:44:12 +00:00
"rtc_periph.c"
"rtc_pm.c"
"rtc_sleep.c"
"rtc_time.c"
"rtc_wdt.c"
"sdio_slave_periph.c"
"sdmmc_periph.c"
"interrupts.c"
2018-09-11 01:44:12 +00:00
"soc_memory_layout.c"
"spi_periph.c"
2019-06-06 09:00:03 +00:00
"ledc_periph.c"
2019-06-05 03:32:20 +00:00
"i2s_periph.c"
2019-04-17 12:19:44 +00:00
"i2c_periph.c"
"uart_periph.c"
2019-11-27 12:08:44 +00:00
"touch_sensor_hal.c"
"touch_sensor_periph.c")
2018-08-27 02:48:16 +00:00
if(NOT BOOTLOADER_BUILD AND CONFIG_ETH_USE_ESP32_EMAC)
2019-04-10 08:24:50 +00:00
list(APPEND SOC_SRCS "emac_hal.c")
endif()
2018-08-27 02:48:16 +00:00
if(NOT CMAKE_BUILD_EARLY_EXPANSION)
set_source_files_properties("esp32/rtc_clk.c" PROPERTIES
COMPILE_FLAGS "-fno-jump-tables -fno-tree-switch-conversion")
endif()