2020-12-29 00:20:24 -05:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2020-04-17 15:34:56 -04:00
|
|
|
|
2021-06-10 07:47:41 -04:00
|
|
|
if(NOT (IDF_TARGET STREQUAL "esp32c3") AND NOT (IDF_TARGET STREQUAL "esp32h2"))
|
2020-12-29 00:20:24 -05:00
|
|
|
set(srcs "ulp.c"
|
|
|
|
"ulp_macro.c")
|
|
|
|
|
2021-12-23 01:12:47 -05:00
|
|
|
if(CONFIG_ESP32S2_ULP_COPROC_RISCV OR CONFIG_ESP32S3_ULP_COPROC_RISCV)
|
2022-02-28 05:12:28 -05:00
|
|
|
list(APPEND srcs "ulp_riscv.c"
|
|
|
|
"ulp_riscv_adc.c")
|
2020-12-29 00:20:24 -05:00
|
|
|
endif()
|
2020-04-17 15:34:56 -04:00
|
|
|
|
2020-12-29 00:20:24 -05:00
|
|
|
idf_component_register(SRCS ${srcs}
|
|
|
|
INCLUDE_DIRS include)
|
|
|
|
endif()
|