Added all the F4 libraries to the project
[fw/stlink] / exampleF4 / CMSIS / DSP_Lib / Source / FilteringFunctions / arm_lms_init_f32.c
1 /*-----------------------------------------------------------------------------   
2 * Copyright (C) 2010 ARM Limited. All rights reserved.   
3 *   
4 * $Date:        15. July 2011  
5 * $Revision:    V1.0.10  
6 *   
7 * Project:          CMSIS DSP Library   
8 * Title:        arm_lms_init_f32.c   
9 *   
10 * Description:  Floating-point LMS filter initialization function.   
11 *   
12 * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0
13 *  
14 * Version 1.0.10 2011/7/15 
15 *    Big Endian support added and Merged M0 and M3/M4 Source code.  
16 *   
17 * Version 1.0.3 2010/11/29  
18 *    Re-organized the CMSIS folders and updated documentation.   
19 *    
20 * Version 1.0.2 2010/11/11   
21 *    Documentation updated.    
22 *   
23 * Version 1.0.1 2010/10/05    
24 *    Production release and review comments incorporated.   
25 *   
26 * Version 1.0.0 2010/09/20    
27 *    Production release and review comments incorporated   
28 *   
29 * Version 0.0.7  2010/06/10    
30 *    Misra-C changes done   
31 * ---------------------------------------------------------------------------*/
32
33 #include "arm_math.h"
34
35 /**   
36  * @addtogroup LMS   
37  * @{   
38  */
39
40   /**   
41    * @brief Initialization function for floating-point LMS filter.   
42    * @param[in] *S points to an instance of the floating-point LMS filter structure.   
43    * @param[in] numTaps  number of filter coefficients.   
44    * @param[in] *pCoeffs points to the coefficient buffer.   
45    * @param[in] *pState points to state buffer.   
46    * @param[in] mu step size that controls filter coefficient updates.   
47    * @param[in] blockSize number of samples to process.   
48    * @return none.   
49    */
50
51 /**   
52  * \par Description:   
53  * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order:   
54  * <pre>   
55  *    {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]}   
56  * </pre>   
57  * The initial filter coefficients serve as a starting point for the adaptive filter.   
58  * <code>pState</code> points to an array of length <code>numTaps+blockSize-1</code> samples, where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_lms_f32()</code>.   
59  */
60
61 void arm_lms_init_f32(
62   arm_lms_instance_f32 * S,
63   uint16_t numTaps,
64   float32_t * pCoeffs,
65   float32_t * pState,
66   float32_t mu,
67   uint32_t blockSize)
68 {
69   /* Assign filter taps */
70   S->numTaps = numTaps;
71
72   /* Assign coefficient pointer */
73   S->pCoeffs = pCoeffs;
74
75   /* Clear state buffer and size is always blockSize + numTaps */
76   memset(pState, 0, (numTaps + (blockSize - 1)) * sizeof(float32_t));
77
78   /* Assign state pointer */
79   S->pState = pState;
80
81   /* Assign Step size value */
82   S->mu = mu;
83 }
84
85 /**   
86  * @} end of LMS group   
87  */