CMSIS FFT problem in stm32cubeIDE
I tried to compile and run arm_rfft_q15(STM32F030R8) .
In STM32CubeIDE, I'm using libarm_cortexM0l_math.a, the file is in
STM32Cube_FW_F0_V1.11.0\Drivers\CMSIS\Lib\GCC, one of the functions
I'm using is arm_rfft_q15.
Build error: undefined reference to `arm_bitreversal_16'.The
function that it is referring to is an assembly function found in
the file arm_bitreversal2.s and I have made sure that file is in
the source file.
I have added .h files which are in STM32Cube_FW_F0_V1.11.0\Drivers
\CMSIS\DSP\Include and the source files which are in
STM32Cube_FW_F0_V1.11.0\Drivers\CMSIS\DSP\Source to my project .
Is there any solution?