2020-12-29 00:20:24 -05:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2020-04-17 15:34:56 -04:00
|
|
|
|
2023-08-28 02:02:08 -04:00
|
|
|
if(${target} STREQUAL "linux")
|
|
|
|
return() # This component is not supported by the POSIX/Linux simulator
|
|
|
|
endif()
|
|
|
|
|
2021-12-23 01:12:47 -05:00
|
|
|
set(srcs "")
|
2022-01-21 04:13:48 -05:00
|
|
|
set(includes "")
|
|
|
|
|
2023-09-07 22:10:07 -04:00
|
|
|
if(CONFIG_ULP_COPROC_ENABLED OR (CONFIG_IDF_DOC_BUILD AND CONFIG_SOC_ULP_SUPPORTED))
|
|
|
|
list(APPEND includes
|
|
|
|
ulp_common/include
|
|
|
|
ulp_common/include/${target})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_ULP_COPROC_TYPE_FSM OR (CONFIG_IDF_DOC_BUILD AND CONFIG_SOC_ULP_FSM_SUPPORTED))
|
|
|
|
list(APPEND includes
|
|
|
|
ulp_fsm/include
|
|
|
|
ulp_fsm/include/${target})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_ULP_COPROC_TYPE_RISCV OR CONFIG_IDF_DOC_BUILD)
|
|
|
|
list(APPEND includes
|
|
|
|
ulp_riscv/include
|
|
|
|
ulp_riscv/shared/include)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_ULP_COPROC_TYPE_LP_CORE OR CONFIG_IDF_DOC_BUILD)
|
|
|
|
list(APPEND includes
|
|
|
|
lp_core/include
|
|
|
|
lp_core/shared/include)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_ULP_COPROC_TYPE_FSM OR CONFIG_ULP_COPROC_TYPE_RISCV)
|
2020-12-29 00:20:24 -05:00
|
|
|
|
2021-12-23 01:12:47 -05:00
|
|
|
list(APPEND srcs
|
2022-09-02 04:18:14 -04:00
|
|
|
"ulp_common/ulp_common.c"
|
|
|
|
"ulp_common/ulp_adc.c")
|
2022-01-21 04:13:48 -05:00
|
|
|
|
|
|
|
if(CONFIG_ULP_COPROC_TYPE_FSM)
|
|
|
|
list(APPEND srcs
|
|
|
|
"ulp_fsm/ulp.c"
|
|
|
|
"ulp_fsm/ulp_macro.c")
|
|
|
|
|
|
|
|
elseif(CONFIG_ULP_COPROC_TYPE_RISCV)
|
2021-12-23 01:12:47 -05:00
|
|
|
list(APPEND srcs
|
2022-02-28 05:12:28 -05:00
|
|
|
"ulp_riscv/ulp_riscv.c"
|
2022-08-03 01:59:44 -04:00
|
|
|
"ulp_riscv/ulp_riscv_lock.c"
|
2022-08-09 09:46:14 -04:00
|
|
|
"ulp_riscv/ulp_riscv_i2c.c")
|
2021-12-23 01:12:47 -05:00
|
|
|
endif()
|
2020-12-29 00:20:24 -05:00
|
|
|
endif()
|
2021-12-23 01:12:47 -05:00
|
|
|
|
2023-02-27 04:03:42 -05:00
|
|
|
if(CONFIG_ULP_COPROC_TYPE_LP_CORE)
|
|
|
|
list(APPEND srcs
|
2023-04-26 01:58:19 -04:00
|
|
|
"lp_core/lp_core.c"
|
|
|
|
"lp_core/shared/ulp_lp_core_memory_shared.c"
|
2023-03-20 11:08:38 -04:00
|
|
|
"lp_core/shared/ulp_lp_core_lp_timer_shared.c"
|
2023-05-22 08:48:15 -04:00
|
|
|
"lp_core/lp_core_i2c.c"
|
|
|
|
"lp_core/lp_core_uart.c")
|
2023-02-27 04:03:42 -05:00
|
|
|
endif()
|
|
|
|
|
2021-12-23 01:12:47 -05:00
|
|
|
idf_component_register(SRCS ${srcs}
|
2022-02-28 05:12:28 -05:00
|
|
|
INCLUDE_DIRS ${includes}
|
2022-07-15 00:52:44 -04:00
|
|
|
REQUIRES driver esp_adc)
|