[][src]Function cmsis_dsp_sys_pregenerated::arm_fir_sparse_init_q7

pub unsafe extern "C" fn arm_fir_sparse_init_q7(
    S: *mut arm_fir_sparse_instance_q7,
    numTaps: u16,
    pCoeffs: *const q7_t,
    pState: *mut q7_t,
    pTapDelay: *mut i32,
    maxDelay: u16,
    blockSize: u32
)

@brief Initialization function for the Q7 sparse FIR filter. @param[in,out] S points to an instance of the Q7 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.