Or can I use ULP features in an external component?
https://github.com/serdartoren/Test_repo/tree/main
Code: Select all
include($ENV{IDF_PATH}/components/ulp/project_include.cmake)
include($ENV{IDF_PATH}/tools/cmake/idf.cmake)
# Create idf::{target} and idf::freertos static libraries
set(ulp_app_name ulp_${COMPONENT_NAME})
set(ulp_riscv_sources "ulp/main.c")
set(ulp_exp_dep_srcs "main.c")
ulp_embed_binary(${ulp_app_name} "${ulp_riscv_sources}" "${ulp_exp_dep_srcs}")
I couldn't find anything in the documentation for it.
It would be great if you could help!!