00001 /*----------------------------------------------------------------------------- 00002 * Copyright (C) 2011 ARM Limited. All rights reserved. 00003 * 00004 * $Date: 15. December 2011 00005 * $Revision: V2.0.0 00006 * 00007 * Project: Cortex-R DSP Library 00008 * Title: arm_lms_norm_init_q31.c 00009 * 00010 * Description: Q31 NLMS initialization function. 00011 * 00012 * Target Processor: Cortex-R4/R5 00013 * 00014 * Version 1.0.0 2011/03/08 00015 * Alpha release. 00016 * 00017 * Version 1.0.1 2011/09/30 00018 * Beta release. 00019 * 00020 * Version 2.0.0 2011/12/15 00021 * Final release. 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 /* Assign filter taps */ 00064 S->numTaps = numTaps; 00065 00066 /* Assign coefficient pointer */ 00067 S->pCoeffs = pCoeffs; 00068 00069 /* Clear state buffer and size is always blockSize + numTaps - 1 */ 00070 memset(pState, 0, (numTaps + (blockSize - 1u)) * sizeof(q31_t)); 00071 00072 /* Assign post Shift value applied to coefficients */ 00073 S->postShift = postShift; 00074 00075 /* Assign state pointer */ 00076 S->pState = pState; 00077 00078 /* Assign Step size value */ 00079 S->mu = mu; 00080 00081 /* Initialize reciprocal pointer table */ 00082 S->recipTable = armRecipTableQ31; 00083 00084 /* Initialise Energy to zero */ 00085 S->energy = 0; 00086 00087 /* Initialise x0 to zero */ 00088 S->x0 = 0; 00089 00090 } 00091
1.7.2