typedef struct _FILTER_FO_Obj_
{
float32_t a1; //!< the denominator filter coefficient value for z^(-1)
float32_t b0; //!< the numerator filter coefficient value for z^0
float32_t b1; //!< the numerator filter coefficient value for z^(-1)
float32_t x1; //!< the input value at time sample n=-1
float32_t y1; //!< the output value at time sample n=-1
} FILTER_FO_Obj;