How to include DSP Filtering Functions?
In the last month, I did an example of FFT using the CMSIS DSP library. Now, I am trying to design a simple "matched filter".
In my code I am using "arm_fir_init_f32" and "arm_fir_f32". While debugging, on the line of "arm_fir_f32", I am getting "HardFault_Handler(void)".
According to the "Debug" panel, the file for "arm_fir_f32.c" can not be found. And the file path which is being shown on the screen is wrong (there is no file path like that on my PC), where is this file path coming from?
Any advice to solve the problem?

