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_f32.c 00009 * 00010 * Description: Floating-point NLMS filter 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 00055 void arm_lms_norm_init_f32( 00056 arm_lms_norm_instance_f32 * S, 00057 uint16_t numTaps, 00058 float32_t * pCoeffs, 00059 float32_t * pState, 00060 float32_t mu, 00061 uint32_t blockSize) 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(float32_t)); 00071 00072 /* Assign state pointer */ 00073 S->pState = pState; 00074 00075 /* Assign Step size value */ 00076 S->mu = mu; 00077 00078 /* Initialise Energy to zero */ 00079 S->energy = 0.0f; 00080 00081 /* Initialise x0 to zero */ 00082 S->x0 = 0.0f; 00083 00084 } 00085