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 #include "arm_common_tables.h"
00026
00054 void arm_lms_norm_init_q31(
00055 arm_lms_norm_instance_q31 * S,
00056 uint16_t numTaps,
00057 q31_t * pCoeffs,
00058 q31_t * pState,
00059 q31_t mu,
00060 uint32_t blockSize,
00061 uint8_t postShift)
00062 {
00063
00064 S->numTaps = numTaps;
00065
00066
00067 S->pCoeffs = pCoeffs;
00068
00069
00070 memset(pState, 0, (numTaps + (blockSize - 1u)) * sizeof(q31_t));
00071
00072
00073 S->postShift = postShift;
00074
00075
00076 S->pState = pState;
00077
00078
00079 S->mu = mu;
00080
00081
00082 S->recipTable = armRecipTableQ31;
00083
00084
00085 S->energy = 0;
00086
00087
00088 S->x0 = 0;
00089
00090 }
00091