]> git.gag.com Git - fw/stlink/blob - exampleF4/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_q15.c
Added all the F4 libraries to the project
[fw/stlink] / exampleF4 / CMSIS / DSP_Lib / Source / FilteringFunctions / arm_lms_norm_init_q15.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_norm_init_q15.c   
9 *   
10 * Description:  Q15 NLMS 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 #include "arm_common_tables.h"
35
36 /**   
37  * @addtogroup LMS_NORM   
38  * @{   
39  */
40
41   /**   
42    * @brief Initialization function for Q15 normalized LMS filter.   
43    * @param[in] *S points to an instance of the Q15 normalized LMS filter structure.   
44    * @param[in] numTaps  number of filter coefficients.   
45    * @param[in] *pCoeffs points to coefficient buffer.   
46    * @param[in] *pState points to state buffer.   
47    * @param[in] mu step size that controls filter coefficient updates.   
48    * @param[in] blockSize number of samples to process.   
49    * @param[in] postShift bit shift applied to coefficients.   
50    * @return none.   
51  *   
52  * <b>Description:</b>   
53  * \par   
54  * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order:   
55  * <pre>   
56  *    {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]}   
57  * </pre>   
58  * The initial filter coefficients serve as a starting point for the adaptive filter.   
59  * <code>pState</code> points to the array of state variables and size of array is   
60  * <code>numTaps+blockSize-1</code> samples, where <code>blockSize</code> is the number of input samples processed   
61  * by each call to <code>arm_lms_norm_q15()</code>.   
62  */
63
64 void arm_lms_norm_init_q15(
65   arm_lms_norm_instance_q15 * S,
66   uint16_t numTaps,
67   q15_t * pCoeffs,
68   q15_t * pState,
69   q15_t mu,
70   uint32_t blockSize,
71   uint8_t postShift)
72 {
73   /* Assign filter taps */
74   S->numTaps = numTaps;
75
76   /* Assign coefficient pointer */
77   S->pCoeffs = pCoeffs;
78
79   /* Clear state buffer and size is always blockSize + numTaps - 1 */
80   memset(pState, 0, (numTaps + (blockSize - 1u)) * sizeof(q15_t));
81
82   /* Assign post Shift value applied to coefficients */
83   S->postShift = postShift;
84
85   /* Assign state pointer */
86   S->pState = pState;
87
88   /* Assign Step size value */
89   S->mu = mu;
90
91   /* Initialize reciprocal pointer table */
92   S->recipTable = armRecipTableQ15;
93
94   /* Initialise Energy to zero */
95   S->energy = 0;
96
97   /* Initialise x0 to zero */
98   S->x0 = 0;
99
100 }
101
102 /**   
103  * @} end of LMS_NORM group   
104  */