![]() |
LIBML
Version 3.2.4
LIBML DSP Software Library
|
Functions | |
void | tpt_biquad_cascade_df1_32x64_init_q31 (tpt_biquad_cascade_df1_32x64_q31_t *aFilter, uint8_t uStages, const q31_t *pCoeffs, q63_t *pState, uint8_t pShift) |
Initialization function for the Q31 Biquad cascade 32x64 filter. More... | |
This function implements a high precision Biquad cascade filter which operates on Q31 data values. The filter coefficients are in 1.31 format and the state variables are in 1.63 format. The double precision state variables reduce quantization noise in the filter and provide a cleaner output. These filters are particularly useful when implementing filters in which the singularities are close to the unit circle. This is common for low pass or high pass filters with very low cutoff frequencies.
The function operates on blocks of input and output data and each call to the function processes blockSize
samples through the filter. pSrc
and pDst
points to input and output arrays containing blockSize
Q31 values.
b0, b1 and b2
multiply the input signal code>x[n] and are referred to as the feedforward coefficients. Coefficients a1
and a2
multiply the output signal code>y[n] and are referred to as the feedback coefficients. Pay careful attention to the sign of the feedback coefficients. Some design tools use the difference equation pre> y[n] = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] - a1 * y[n-1] - a2 * y[n-2] /pre> In this case the feedback coefficients a1
and code>a2 must be negated when used with the CMSIS DSP Library. numStages=5
second order stages with the coefficients for one of the stages configured as a first order filter (b2=0
and a2=0
). pState
points to state variables array. Each Biquad stage has 4 state variables x[n-1], x[n-2], y[n-1] /code> and y[n-2]
and each state variable in 1.63 format to improve precision. The state variables are arranged in the array as: pre> {x[n-1], x[n-2], y[n-1], y[n-2]} /pre>
The 4 state variables for stage 1 are first, then the 4 state variables for stage 2, and so on. The state array has a total length of 4*numStages
values of data in 1.63 format. The state variables are updated after each block of data is processed, the coefficients are untouched.
The coefficients and state variables for a filter are stored together in an instance data structure. A separate instance structure must be defined for each filter. Coefficient arrays may be shared among several instances while state variable arrays cannot be shared.
There is also an associated initialization function which performs the following operations:
- Sets the values of the internal structure fields.
- Zeros out the values in the state buffer. To do this manually without calling the init function, assign the follow subfields of the instance structure: numStages, pCoeffs, postShift, pState. Also set all of the values in pState to zero.
Use of the initialization function is optional. However, if the initialization function is used, then the instance structure cannot be placed into a const data section. To place an instance structure into a const data section, the instance structure must be manually initialized. Set the values in the state buffer to zeros before static initialization. For example, to statically initialize the filter instance structure use pre> arm_biquad_cas_df1_32x64_ins_q31 S1 = {numStages, pState, pCoeffs, postShift}; /pre> where numStages
is the number of Biquad stages in the filter; code>pState
is the address of the state buffer; code>pCoeffs is the address of the coefficient buffer; code>postShift shift to be applied which is described in detail below. [-1 +1)
. The processing function has an additional scaling parameter postShift
which allows the filter coefficients to exceed the range [+1 -1)
. At the output of the filter's accumulator is a shift register which shifts the result by postShift
bits. 2^postShift
. For example, to realize the coefficients pre> {1.5, -0.8, 1.2, 1.6, -0.9} /pre> set the Coefficient array to: pre> {0.75, -0.4, 0.6, 0.8, -0.45} /pre> and set postShift=1
void tpt_biquad_cascade_df1_32x64_init_q31 | ( | tpt_biquad_cascade_df1_32x64_q31_t * | aFilter, |
uint8_t | uStages, | ||
const q31_t * | pCoeffs, | ||
q63_t * | pState, | ||
uint8_t | pShift | ||
) |
Initialization function for the Q31 Biquad cascade 32x64 filter.
[in,out] | aFilter | points to an instance of the high precision Q31 Biquad cascade filter structure |
[in] | uStages | number of 2nd order stages in the filter |
[in] | pCoeffs | points to the filter coefficients |
[in] | pState | points to the state buffer |
[in] | pShift | Shift to be applied after the accumulator. Varies according to the coefficients format |
pCoeffs
in the following order: pre> {b10, b11, b12, a11, a12, b20, b21, b22, a21, a22, ...} /pre> where b1x
and a1x
are the coefficients for the first stage, b2x
and a2x
are the coefficients for the second stage, and so on. The pCoeffs
array contains a total of 5*numStages
values. pState
points to state variables array and size of each state variable is 1.63 format. Each Biquad stage has 4 state variables x[n-1], x[n-2], y[n-1],
and y[n-2]
. The state variables are arranged in the state array as: pre> {x[n-1], x[n-2], y[n-1], y[n-2]} /pre> The 4 state variables for stage 1 are first, then the 4 state variables for stage 2, and so on. The state array has a total length of 4*numStages
values. The state variables are updated after each block of data is processed; the coefficients are untouched.