I need to add DSP functionality to my current project, but having a heck of a time trying to figure out how.
https://github.com/espressif/esp-dsp#in ... wn-project
I have done this from the link above.
Including ESP-DSP into your own project
To include ESP-DSP into your ESP-IDF project, clone ESP-DSP repository (or add it as a submodule) into the components directory of the project:
cd your-project-directory
mkdir -p components
cd components
git clone https://github.com/espressif/esp-dsp.git
When I add #include "esp_dsp.h" to my main.c it cant find it.
Or maybe a simpler way to explain how to do it would be to start with the blink example, and explain how to add the DSP to it.
Any help would be greatly appreciated.