mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
8d1f243bff
When not compiling bootloader, a spinlock will be used for reading or writing I2C internal devices/registers. When compiling for bootloader, no need to use any lock.
31 lines
819 B
CMake
31 lines
819 B
CMake
idf_build_get_property(soc_name IDF_TARGET)
|
|
|
|
if(EXISTS "${COMPONENT_DIR}/${soc_name}")
|
|
include(${COMPONENT_DIR}/${soc_name}/sources.cmake)
|
|
|
|
spaces2list(SOC_SRCS)
|
|
add_prefix(srcs "${soc_name}/" ${SOC_SRCS})
|
|
set(include_dirs ${soc_name} ${soc_name}/include)
|
|
endif()
|
|
|
|
list(APPEND include_dirs include)
|
|
list(APPEND srcs
|
|
"src/memory_layout_utils.c"
|
|
"src/lldesc.c"
|
|
"src/hal/spi_hal.c"
|
|
"src/hal/spi_hal_iram.c"
|
|
"src/hal/spi_slave_hal.c"
|
|
"src/hal/spi_slave_hal_iram.c"
|
|
"src/soc_include_legacy_warn.c"
|
|
"src/hal/spi_flash_hal.c"
|
|
"src/hal/spi_flash_hal_iram.c"
|
|
)
|
|
|
|
if (NOT(BOOTLOADER_BUILD))
|
|
list(APPEND srcs "src/regi2c_ctrl.c")
|
|
endif()
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS "${include_dirs}"
|
|
LDFRAGMENTS linker.lf)
|