Hello,
I need to build IIR filter using CCS V5.5 using TMS320C6670. Since my application has time constraint I cannot simply apply the formula and implement the filter by brute force method. I have inputs in the form of (B,A,X) corresponding to b,a, x of the IIR filter coefficients and input.
a(1)*y(n)=b(1)*x(n)+b(2)*x(n-1)....-a(2)*y(n-1)...-a(na+1)*y(n-na).
Is there a way I can use the built-in IIR filter given by TI which uses different algorithm other than rational transfer function?