[][src]Function cmsis_dsp_sys_pregenerated::arm_fir_sparse_init_q15

pub unsafe extern "C" fn arm_fir_sparse_init_q15(
    S: *mut arm_fir_sparse_instance_q15,
    numTaps: u16,
    pCoeffs: *const q15_t,
    pState: *mut q15_t,
    pTapDelay: *mut i32,
    maxDelay: u16,
    blockSize: u32
)

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