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