Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "arm_math.h"
00025
00055 void arm_fir_sparse_init_q31(
00056 arm_fir_sparse_instance_q31 * S,
00057 uint16_t numTaps,
00058 q31_t * pCoeffs,
00059 q31_t * pState,
00060 int32_t * pTapDelay,
00061 uint16_t maxDelay,
00062 uint32_t blockSize)
00063 {
00064
00065 S->numTaps = numTaps;
00066
00067
00068 S->pCoeffs = pCoeffs;
00069
00070
00071 S->pTapDelay = pTapDelay;
00072
00073
00074 S->maxDelay = maxDelay;
00075
00076
00077 S->stateIndex = 0u;
00078
00079
00080 memset(pState, 0, (maxDelay + blockSize) * sizeof(q31_t));
00081
00082
00083 S->pState = pState;
00084
00085 }
00086