Part Number: EK-TM4C1294XL
Hello All,
I'am trying to use CMSIS DSP Library with TM4C1294XL Launchpad. I'am implementing the low pass filter of the library using arm_fir_f32 function.
In the Fir example for the library it is written
* Note that the filter is symmetric (a property of linear phase FIR filters)
* and the point of symmetry is sample 14. Thus the filter will have a delay of
* 14 samples for all frequencies.
That means the filter will have a delay of (N-1) samples i.e. (NUM_TAPS -1)/2 in its output
Now this property does not gives a real time continuous filter output signal which can be plotted further.
How to remove this delay in the output signal?
kindly suggest a solution for the problem