// eziir32
// ezIIR FILTER DESIGN SCRIPT
// Butterworth       : 1
// Chebyshev(Type 1) : 2
// Chebyshev(Type 2) : 3
// Elliptic          : 4
// Select Any one of the above IIR Filter Type     : 2
// Low pass          : 1
// High Pass         : 2
// Band Pass         : 3
// Band Stop         : 4
// Select Any one of the above Response            : 1
// Enter the Sampling frequency                    : 250e3
// Enter the Pass band Ripples in dB(RP)           : 0.1
// Enter the stop band Rippled in dB(RS)           : 40
// Enter the pass band corner frequency(FP)        : 33e3
// Enter the stop band corner frequency(FS)        : 43e3
// Enter the name of the file for coeff storage    : test4_coeffs.txt
//  
// Q format of the IIR filter coefficients:
//     28
// 
// Input Scaling value:
//     0.2267
// 
// Number of Biquads:
//      5

#define IIR32_COEFF {\
			0,207570273,0,4057157,4057157,\
			-167589156,403275722,19172243,38344487,19172243,\
			-187051373,375374895,28441374,56882748,28441374,\
			-215201983,349004033,21611204,43222407,21611204,\
			-249342794,342105018,680452585,1360905170,680452585}

#define IIR32_ISF	60865183
#define IIR32_NBIQ	5
#define IIR32_QFMAT	28
