2020-02-19 12:31:54 +01:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2020-12-22 19:51:37 +11:00
|
|
|
if(${target} STREQUAL "esp32c3")
|
|
|
|
return()
|
|
|
|
endif()
|
2019-08-08 13:44:24 +10:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
# bootloader only needs headers from this component
|
|
|
|
set(priv_requires soc)
|
|
|
|
else()
|
|
|
|
set(priv_requires soc freertos)
|
|
|
|
set(srcs "debug_helpers.c"
|
|
|
|
"debug_helpers_asm.S"
|
2020-02-19 12:31:54 +01:00
|
|
|
"expression_with_stack_xtensa.c"
|
2020-03-12 02:59:53 -03:00
|
|
|
"expression_with_stack_xtensa_asm.S"
|
2019-08-09 15:26:49 +10:00
|
|
|
"eri.c"
|
2020-02-19 12:31:54 +01:00
|
|
|
"trax.c"
|
2020-09-30 07:44:12 +08:00
|
|
|
"xtensa_intr.c"
|
|
|
|
"xtensa_intr_asm.S"
|
2020-02-19 12:31:54 +01:00
|
|
|
"${target}/trax_init.c"
|
2019-08-18 14:37:35 +08:00
|
|
|
)
|
2019-08-08 13:44:24 +10:00
|
|
|
|
2020-01-17 11:47:08 +08:00
|
|
|
if(IDF_TARGET STREQUAL "esp32s2")
|
2019-08-18 14:37:35 +08:00
|
|
|
list(APPEND srcs "stdatomic.c")
|
|
|
|
endif()
|
2019-05-27 14:29:43 +08:00
|
|
|
endif()
|
2019-03-25 21:11:53 +08:00
|
|
|
|
2019-08-08 13:44:24 +10:00
|
|
|
idf_component_register(SRCS ${srcs}
|
2019-04-28 15:38:23 +08:00
|
|
|
INCLUDE_DIRS include ${target}/include
|
|
|
|
LDFRAGMENTS linker.lf
|
2019-08-08 13:44:24 +10:00
|
|
|
PRIV_REQUIRES ${priv_requires})
|
2019-03-25 21:11:53 +08:00
|
|
|
|
2019-08-08 13:44:24 +10:00
|
|
|
if(NOT BOOTLOADER_BUILD)
|
2020-08-08 20:15:27 +08:00
|
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/${target}/libxt_hal.a")
|
2019-05-27 14:29:43 +08:00
|
|
|
endif()
|