Hello everyone,
I have implemented IIR filter program using LCDK6748. I used TI libraries that require in the program and also the .out file is generated.I gave a Sine wave as the i/p to the filter but in the o/p only noise is observed.Can you suggest me how to check the o/p of the IIR filter in LCDKC6748?
I attached the code and the matlab generated coefficient file as under :-
// L138_iirsos_intr.c
// bs1800int.cof
//second order type 1 Chebyshev LPF with 2dB passband ripple
//and cutoff frequency 1500Hz
#define NUM_SECTIONS 1
float b[NUM_SECTIONS][3]={{0.0,0.48255,0.0}};
float a[NUM_SECTIONS][3]={{1.0,-0.71624,0.387913}};