2020-12-29 00:20:24 -05:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2020-04-17 15:34:56 -04:00
|
|
|
|
2021-12-23 01:12:47 -05:00
|
|
|
set(srcs "")
|
2022-01-21 04:13:48 -05:00
|
|
|
set(includes "")
|
|
|
|
|
|
|
|
if(CONFIG_SOC_ULP_SUPPORTED OR CONFIG_SOC_RISCV_COPROC_SUPPORTED)
|
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
|
|
|
|
|
|
|
list(APPEND includes
|
|
|
|
ulp_common/include
|
|
|
|
ulp_common/include/${target})
|
|
|
|
|
|
|
|
if(CONFIG_ULP_COPROC_TYPE_FSM)
|
|
|
|
list(APPEND srcs
|
|
|
|
"ulp_fsm/ulp.c"
|
|
|
|
"ulp_fsm/ulp_macro.c")
|
|
|
|
|
|
|
|
list(APPEND includes
|
2022-02-17 01:14:34 -05:00
|
|
|
ulp_fsm/include
|
|
|
|
ulp_fsm/include/${target})
|
2020-04-17 15:34:56 -04:00
|
|
|
|
2022-01-21 04:13:48 -05:00
|
|
|
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")
|
2022-01-21 04:13:48 -05:00
|
|
|
|
|
|
|
list(APPEND includes
|
2022-08-03 01:59:44 -04:00
|
|
|
ulp_riscv/include
|
|
|
|
ulp_riscv/shared/include)
|
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
|
|
|
|
|
|
|
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)
|
2022-01-31 13:45:31 -05:00
|
|
|
|
|
|
|
if(CONFIG_SOC_ULP_SUPPORTED OR CONFIG_SOC_RISCV_COPROC_SUPPORTED)
|
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
|
|
|
endif()
|