[][src]Function cmsis_dsp_sys_pregenerated::arm_fir_sparse_init_f32

pub unsafe extern "C" fn arm_fir_sparse_init_f32(
    S: *mut arm_fir_sparse_instance_f32,
    numTaps: u16,
    pCoeffs: *const float32_t,
    pState: *mut float32_t,
    pTapDelay: *mut i32,
    maxDelay: u16,
    blockSize: u32
)

@brief Initialization function for the floating-point sparse FIR filter. @param[in,out] S points to an instance of the floating-point sparse FIR structure. @param[in] numTaps number of nonzero coefficients in the filter. @param[in] pCoeffs points to the array of filter coefficients. @param[in] pState points to the state buffer. @param[in] pTapDelay points to the array of offset times. @param[in] maxDelay maximum offset time supported. @param[in] blockSize number of samples that will be processed per block.