2020-04-17 15:34:56 -04:00
|
|
|
if(IDF_TARGET STREQUAL "esp32")
|
2021-12-23 01:12:47 -05:00
|
|
|
set(src_dirs ${IDF_TARGET})
|
2020-04-17 15:34:56 -04:00
|
|
|
set(ulp_sources "ulp/test_jumps_esp32.S")
|
2021-12-23 01:12:47 -05:00
|
|
|
elseif(IDF_TARGET STREQUAL "esp32s2" OR IDF_TARGET STREQUAL "esp32s3")
|
2022-01-21 04:13:48 -05:00
|
|
|
if(CONFIG_ULP_COPROC_TYPE_RISCV)
|
2021-12-23 01:12:47 -05:00
|
|
|
set(src_dirs "ulp_riscv")
|
|
|
|
set(ulp_sources "ulp_riscv/ulp/test_main.c")
|
|
|
|
endif()
|
|
|
|
#TODO: Add ULP-FSM Test case for esp32s2 and esp32s3
|
2019-08-06 05:59:26 -04:00
|
|
|
endif()
|
2020-04-17 15:34:56 -04:00
|
|
|
|
2021-12-23 01:12:47 -05:00
|
|
|
idf_component_register(SRC_DIRS ${src_dirs}
|
|
|
|
PRIV_INCLUDE_DIRS .
|
|
|
|
PRIV_REQUIRES cmock ulp soc esp_common driver)
|
|
|
|
|
2020-04-17 15:34:56 -04:00
|
|
|
set(ulp_app_name ulp_test_app)
|
2021-12-23 01:12:47 -05:00
|
|
|
set(ulp_exp_dep_srcs ${src_dirs})
|
2020-04-17 15:34:56 -04:00
|
|
|
ulp_embed_binary(${ulp_app_name} "${ulp_sources}" "${ulp_exp_dep_srcs}")
|