2020-11-05 23:03:03 -05:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2021-01-22 10:06:37 -05:00
|
|
|
|
2021-06-28 05:51:48 -04:00
|
|
|
# should test arch here not target: IDF-1754
|
2021-06-11 04:30:22 -04:00
|
|
|
if(NOT "${target}" STREQUAL "esp32c3" AND NOT "${target}" STREQUAL "esp32h2")
|
2020-11-05 23:03:03 -05:00
|
|
|
return()
|
|
|
|
endif()
|
2021-01-22 10:06:37 -05:00
|
|
|
|
2020-11-05 23:03:03 -05:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
set(priv_requires soc)
|
|
|
|
else()
|
|
|
|
set(priv_requires soc freertos)
|
|
|
|
set(srcs
|
2020-12-30 00:27:00 -05:00
|
|
|
"instruction_decode.c"
|
|
|
|
"interrupt.c"
|
2020-11-05 23:03:03 -05:00
|
|
|
"vectors.S")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
LDFRAGMENTS linker.lf
|
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
PRIV_REQUIRES ${priv_requires})
|