2022-05-28 05:03:05 -04:00
|
|
|
set(srcs "test_app_main.c"
|
|
|
|
"test_mcpwm_cap.c"
|
|
|
|
"test_mcpwm_cmpr.c"
|
|
|
|
"test_mcpwm_fault.c"
|
|
|
|
"test_mcpwm_gen.c"
|
|
|
|
"test_mcpwm_oper.c"
|
|
|
|
"test_mcpwm_sync.c"
|
|
|
|
"test_mcpwm_timer.c"
|
2023-08-15 22:51:30 -04:00
|
|
|
"test_mcpwm_common.c"
|
2022-05-28 05:03:05 -04:00
|
|
|
"test_mcpwm_utils.c")
|
|
|
|
|
2022-07-28 01:05:18 -04:00
|
|
|
if(CONFIG_MCPWM_ISR_IRAM_SAFE)
|
|
|
|
list(APPEND srcs "test_mcpwm_iram.c")
|
|
|
|
endif()
|
|
|
|
|
2022-05-28 05:03:05 -04:00
|
|
|
# In order for the cases defined by `TEST_CASE` to be linked into the final elf,
|
|
|
|
# the component can be registered as WHOLE_ARCHIVE
|
|
|
|
idf_component_register(SRCS ${srcs}
|
2023-06-12 06:31:55 -04:00
|
|
|
PRIV_REQUIRES unity driver
|
2022-05-28 05:03:05 -04:00
|
|
|
WHOLE_ARCHIVE)
|