Select one of the symbols to view example projects that use it.
 
Outline
#include "stm32f411e_discovery_accelerometer.h"
AccelerometerDrv
BSP_ACCELERO_Init()
BSP_ACCELERO_Reset()
BSP_ACCELERO_Click_ITConfig()
BSP_ACCELERO_GetXYZ(int16_t *)
Files
loading...
CodeScopeSTM32 Libraries and SamplesSTM32F411E-Discoverystm32f411e_discovery_accelerometer.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file stm32f411e_discovery_accelerometer.c * @author MCD Application Team * @brief This file provides a set of functions needed to manage the * MEMS accelerometer available on STM32F411E-Discovery Kit. ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* Includes ------------------------------------------------------------------*/ #include "stm32f411e_discovery_accelerometer.h" /** @addtogroup BSP * @{ *//* ... */ /** @addtogroup STM32F411E_DISCOVERY * @{ *//* ... */ /** @defgroup STM32F411E_DISCOVERY_ACCELEROMETER STM32F411E DISCOVERY ACCELEROMETER * @{ *//* ... */ /** @defgroup STM32F411E_DISCOVERY_ACCELEROMETER_Private_TypesDefinitions STM32F411E DISCOVERY ACCELEROMETER Private TypesDefinitions * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32F411E_DISCOVERY_ACCELEROMETER_Private_Defines STM32F411E DISCOVERY ACCELEROMETER Private Defines * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32F411E_DISCOVERY_ACCELEROMETER_Private_Macros STM32F411E DISCOVERY ACCELEROMETER Private Macros * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32F411E_DISCOVERY_ACCELEROMETER_Private_Variables STM32F411E DISCOVERY ACCELEROMETER Private Variables * @{ *//* ... */ static ACCELERO_DrvTypeDef *AccelerometerDrv; /** * @} *//* ... */ /** @defgroup STM32F411E_DISCOVERY_ACCELEROMETER_Private_FunctionPrototypes STM32F411E DISCOVERY ACCELEROMETER Private FunctionPrototypes * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32F411E_DISCOVERY_ACCELEROMETER_Private_Functions STM32F411E DISCOVERY ACCELEROMETER Private Functions * @{ *//* ... */ /** * @brief Set accelerometer Initialization. * @retval ACCELERO_OK if no problem during initialization *//* ... */ uint8_t BSP_ACCELERO_Init(void) { uint8_t ret = ACCELERO_ERROR; uint16_t ctrl = 0x0000; ACCELERO_InitTypeDef Accelero_InitStructure; ACCELERO_FilterConfigTypeDef Accelero_FilterStructure = {0,0,0,0}; if(Lsm303dlhcDrv.ReadID() == I_AM_LMS303DLHC) { /* Initialize the accelerometer driver structure */ AccelerometerDrv = &Lsm303dlhcDrv; /* MEMS configuration ----------------------------------------------------*/ /* Fill the accelerometer structure */ Accelero_InitStructure.Power_Mode = LSM303DLHC_NORMAL_MODE; Accelero_InitStructure.AccOutput_DataRate = LSM303DLHC_ODR_50_HZ; Accelero_InitStructure.Axes_Enable = LSM303DLHC_AXES_ENABLE; Accelero_InitStructure.AccFull_Scale = LSM303DLHC_FULLSCALE_2G; Accelero_InitStructure.BlockData_Update = LSM303DLHC_BlockUpdate_Continous; Accelero_InitStructure.Endianness = LSM303DLHC_BLE_LSB; Accelero_InitStructure.High_Resolution = LSM303DLHC_HR_ENABLE; /* Configure MEMS: data rate, power mode, full scale and axes */ ctrl |= (Accelero_InitStructure.Power_Mode | Accelero_InitStructure.AccOutput_DataRate | \ Accelero_InitStructure.Axes_Enable); ctrl |= ((Accelero_InitStructure.BlockData_Update | Accelero_InitStructure.Endianness | \ Accelero_InitStructure.AccFull_Scale | Accelero_InitStructure.High_Resolution) << 8); /* Configure the accelerometer main parameters */ AccelerometerDrv->Init(ctrl); /* Fill the accelerometer LPF structure */ Accelero_FilterStructure.HighPassFilter_Mode_Selection = LSM303DLHC_HPM_NORMAL_MODE; Accelero_FilterStructure.HighPassFilter_CutOff_Frequency = LSM303DLHC_HPFCF_16; Accelero_FilterStructure.HighPassFilter_AOI1 = LSM303DLHC_HPF_AOI1_DISABLE; Accelero_FilterStructure.HighPassFilter_AOI2 = LSM303DLHC_HPF_AOI2_DISABLE; /* Configure MEMS: mode, cutoff frquency, Filter status, Click, AOI1 and AOI2 */ ctrl = (uint8_t) (Accelero_FilterStructure.HighPassFilter_Mode_Selection |\ Accelero_FilterStructure.HighPassFilter_CutOff_Frequency |\ Accelero_FilterStructure.HighPassFilter_AOI1 |\ Accelero_FilterStructure.HighPassFilter_AOI2); /* Configure the accelerometer LPF main parameters */ AccelerometerDrv->FilterConfig(ctrl); ret = ACCELERO_OK; }if (Lsm303dlhcDrv.ReadID() == I_AM_LMS303DLHC) { ... } else if(Lsm303agrDrv.ReadID() == I_AM_LSM303AGR) { /* Initialize the accelerometer driver structure */ AccelerometerDrv = &Lsm303agrDrv; /* MEMS configuration ----------------------------------------------------*/ /* Fill the accelerometer structure */ Accelero_InitStructure.Power_Mode = LSM303AGR_NORMAL_MODE; Accelero_InitStructure.AccOutput_DataRate = LSM303AGR_ODR_50_HZ; Accelero_InitStructure.Axes_Enable = LSM303AGR_AXES_ENABLE; Accelero_InitStructure.AccFull_Scale = LSM303AGR_FULLSCALE_2G; Accelero_InitStructure.BlockData_Update = LSM303AGR_BlockUpdate_Continous; Accelero_InitStructure.Endianness = LSM303AGR_BLE_LSB; Accelero_InitStructure.High_Resolution = LSM303AGR_HR_ENABLE; /* Configure MEMS: data rate, power mode, full scale and axes */ ctrl |= (Accelero_InitStructure.Power_Mode | Accelero_InitStructure.AccOutput_DataRate | \ Accelero_InitStructure.Axes_Enable); ctrl |= ((Accelero_InitStructure.BlockData_Update | Accelero_InitStructure.Endianness | \ Accelero_InitStructure.AccFull_Scale | Accelero_InitStructure.High_Resolution) << 8); /* Configure the accelerometer main parameters */ AccelerometerDrv->Init(ctrl); /* Fill the accelerometer LPF structure */ Accelero_FilterStructure.HighPassFilter_Mode_Selection = LSM303AGR_HPM_NORMAL_MODE; Accelero_FilterStructure.HighPassFilter_CutOff_Frequency = LSM303AGR_HPFCF_16; Accelero_FilterStructure.HighPassFilter_AOI1 = LSM303AGR_HPF_AOI1_DISABLE; Accelero_FilterStructure.HighPassFilter_AOI2 = LSM303AGR_HPF_AOI2_DISABLE; /* Configure MEMS: mode, cutoff frquency, Filter status, Click, AOI1 and AOI2 */ ctrl = (uint8_t) (Accelero_FilterStructure.HighPassFilter_Mode_Selection |\ Accelero_FilterStructure.HighPassFilter_CutOff_Frequency |\ Accelero_FilterStructure.HighPassFilter_AOI1 |\ Accelero_FilterStructure.HighPassFilter_AOI2); /* Configure the accelerometer LPF main parameters */ AccelerometerDrv->FilterConfig(ctrl); ret = ACCELERO_OK; }else if (Lsm303agrDrv.ReadID() == I_AM_LSM303AGR) { ... } return ret; }{ ... } /** * @brief Reboot memory content of Accelerometer. *//* ... */ void BSP_ACCELERO_Reset(void) { if(AccelerometerDrv->Reset != NULL) { AccelerometerDrv->Reset(); }if (AccelerometerDrv->Reset != NULL) { ... } }{ ... } /** * @brief Configure accelerometer click IT. *//* ... */ void BSP_ACCELERO_Click_ITConfig(void) { if(AccelerometerDrv->ConfigIT!= NULL) { AccelerometerDrv->ConfigIT(); }if (AccelerometerDrv->ConfigIT!= NULL) { ... } }{ ... } /** * @brief Get XYZ axes acceleration. * @param pDataXYZ: Pointer to 3 angular acceleration axes. * pDataXYZ[0] = X axis, pDataXYZ[1] = Y axis, pDataXYZ[2] = Z axis *//* ... */ void BSP_ACCELERO_GetXYZ(int16_t *pDataXYZ) { int16_t SwitchXY = 0; if(AccelerometerDrv->GetXYZ!= NULL) { AccelerometerDrv->GetXYZ(pDataXYZ); /* Switch X and Y Axes in case of LSM303DLHC MEMS */ if(AccelerometerDrv == &Lsm303dlhcDrv) { SwitchXY = pDataXYZ[0]; pDataXYZ[0] = pDataXYZ[1]; /* Invert Y Axis to be conpliant with LIS3DSH */ pDataXYZ[1] = -SwitchXY; }if (AccelerometerDrv == &Lsm303dlhcDrv) { ... } }if (AccelerometerDrv->GetXYZ!= NULL) { ... } }{ ... } /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */