DSP library with STM32F103 (blue pill) possible?
I would like to implement a FFT on a STM32F103 (blue pill).
So far i installed the STM32cubeIDE and set up a project.
I added "CMSIS CORE" and "CMSIS DSP" (as library) in the cubeMX software under additional software.
In my code i added:
#define ARM_MATH_CM3
#include "arm_math.h"
However, when compiling, i get this error:
../Core/Src/main.c:27:10: fatal error: arm_math.h: No such file or directory
Why that?
Is there a step-by-step guide for absolute beginners like me?
