-
Notifications
You must be signed in to change notification settings - Fork 1
/
stm32f429i_discovery_gyroscope.c
273 lines (229 loc) · 7.59 KB
/
stm32f429i_discovery_gyroscope.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/**
******************************************************************************
* @file stm32f429i_discovery_gyroscope.c
* @author MCD Application Team
* @brief This file provides a set of functions needed to manage the
* MEMS gyroscope available on STM32F429I-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 "stm32f429i_discovery_gyroscope.h"
/** @addtogroup BSP
* @{
*/
/** @addtogroup STM32F429I_DISCOVERY
* @{
*/
/** @defgroup STM32F429I_DISCOVERY_GYROSCOPE STM32F429I DISCOVERY GYROSCOPE
* @{
*/
/** @defgroup STM32F429I_DISCOVERY_GYROSCOPE_Private_TypesDefinitions STM32F429I DISCOVERY GYROSCOPE Private TypesDefinitions
* @{
*/
/**
* @}
*/
/** @defgroup STM32F429I_DISCOVERY_GYROSCOPE_Private_Defines STM32F429I DISCOVERY GYROSCOPE Private Defines
* @{
*/
/**
* @}
*/
/** @defgroup STM32F429I_DISCOVERY_GYROSCOPE_Private_Macros STM32F429I DISCOVERY GYROSCOPE Private Macros
* @{
*/
/**
* @}
*/
/** @defgroup STM32F429I_DISCOVERY_GYROSCOPE_Private_Variables STM32F429I DISCOVERY GYROSCOPE Private Variables
* @{
*/
static GYRO_DrvTypeDef *GyroscopeDrv;
/**
* @}
*/
/** @defgroup STM32F429I_DISCOVERY_GYROSCOPE_Private_FunctionPrototypes STM32F429I DISCOVERY GYROSCOPE Private FunctionPrototypes
* @{
*/
/**
* @}
*/
/** @defgroup STM32F429I_DISCOVERY_GYROSCOPE_Private_Functions STM32F429I DISCOVERY GYROSCOPE Private Functions
* @{
*/
/**
* @brief Set gyroscope Initialization.
* @retval GYRO_OK if no problem during initialization
*/
uint8_t BSP_GYRO_Init(void)
{
uint8_t ret = GYRO_ERROR;
uint16_t ctrl = 0x0000;
GYRO_InitTypeDef Gyro_InitStructure;
GYRO_FilterConfigTypeDef Gyro_FilterStructure = {0, 0};
if ((L3gd20Drv.ReadID() == I_AM_L3GD20) || (L3gd20Drv.ReadID() == I_AM_L3GD20_TR))
{
/* Initialize the gyroscope driver structure */
GyroscopeDrv = &L3gd20Drv;
/* MEMS configuration ----------------------------------------------------*/
/* Fill the gyroscope structure */
Gyro_InitStructure.Power_Mode = L3GD20_MODE_ACTIVE;
Gyro_InitStructure.Output_DataRate = L3GD20_OUTPUT_DATARATE_1;
Gyro_InitStructure.Axes_Enable = L3GD20_AXES_ENABLE;
Gyro_InitStructure.Band_Width = L3GD20_BANDWIDTH_4;
Gyro_InitStructure.BlockData_Update = L3GD20_BlockDataUpdate_Continous;
Gyro_InitStructure.Endianness = L3GD20_BLE_LSB;
Gyro_InitStructure.Full_Scale = L3GD20_FULLSCALE_500;
/* Configure MEMS: data rate, power mode, full scale and axes */
ctrl = (uint16_t)(Gyro_InitStructure.Power_Mode | Gyro_InitStructure.Output_DataRate | \
Gyro_InitStructure.Axes_Enable | Gyro_InitStructure.Band_Width);
ctrl |= (uint16_t)((Gyro_InitStructure.BlockData_Update | Gyro_InitStructure.Endianness | \
Gyro_InitStructure.Full_Scale) << 8);
/* Initialize the gyroscope */
GyroscopeDrv->Init(ctrl);
Gyro_FilterStructure.HighPassFilter_Mode_Selection = L3GD20_HPM_NORMAL_MODE_RES;
Gyro_FilterStructure.HighPassFilter_CutOff_Frequency = L3GD20_HPFCF_0;
ctrl = (uint8_t)((Gyro_FilterStructure.HighPassFilter_Mode_Selection | \
Gyro_FilterStructure.HighPassFilter_CutOff_Frequency));
/* Configure the gyroscope main parameters */
GyroscopeDrv->FilterConfig(ctrl) ;
GyroscopeDrv->FilterCmd(L3GD20_HIGHPASSFILTER_ENABLE);
ret = GYRO_OK;
}
#if defined(USE_STM32F429I_DISCOVERY_REVD)
else if (I3g4250Drv.ReadID() == I_AM_I3G4250D)
{
/* Initialize the gyroscope driver structure */
GyroscopeDrv = &I3g4250Drv;
/* Configure Mems : data rate, power mode, full scale and axes */
Gyro_InitStructure.Power_Mode = I3G4250D_MODE_ACTIVE;
Gyro_InitStructure.Output_DataRate = I3G4250D_OUTPUT_DATARATE_1;
Gyro_InitStructure.Axes_Enable = I3G4250D_AXES_ENABLE;
Gyro_InitStructure.Band_Width = I3G4250D_BANDWIDTH_4;
Gyro_InitStructure.BlockData_Update = I3G4250D_BlockDataUpdate_Continous;
Gyro_InitStructure.Endianness = I3G4250D_BLE_LSB;
Gyro_InitStructure.Full_Scale = I3G4250D_FULLSCALE_500;
/* Configure MEMS: data rate, power mode, full scale and axes */
ctrl = (uint16_t)(Gyro_InitStructure.Power_Mode | Gyro_InitStructure.Output_DataRate | \
Gyro_InitStructure.Axes_Enable | Gyro_InitStructure.Band_Width);
ctrl |= (uint16_t)((Gyro_InitStructure.BlockData_Update | Gyro_InitStructure.Endianness | \
Gyro_InitStructure.Full_Scale) << 8);
/* Initialize the gyroscope */
GyroscopeDrv->Init(ctrl);
Gyro_FilterStructure.HighPassFilter_Mode_Selection = I3G4250D_HPM_NORMAL_MODE_RES;
Gyro_FilterStructure.HighPassFilter_CutOff_Frequency = I3G4250D_HPFCF_0;
ctrl = (uint8_t)((Gyro_FilterStructure.HighPassFilter_Mode_Selection | \
Gyro_FilterStructure.HighPassFilter_CutOff_Frequency));
/* Configure the gyroscope main parameters */
GyroscopeDrv->FilterConfig(ctrl);
GyroscopeDrv->FilterCmd(I3G4250D_HIGHPASSFILTER_ENABLE);
ret = GYRO_OK;
}
#endif /* USE_STM32F429I_DISCOVERY_REVD */
return ret;
}
/**
* @brief Read ID of gyroscope component.
* @retval ID
*/
uint8_t BSP_GYRO_ReadID(void)
{
uint8_t id = 0x00;
if (GyroscopeDrv->ReadID != NULL)
{
id = GyroscopeDrv->ReadID();
}
return id;
}
/**
* @brief Reboot memory content of Gyroscope.
*/
void BSP_GYRO_Reset(void)
{
if (GyroscopeDrv->Reset != NULL)
{
GyroscopeDrv->Reset();
}
}
/**
* @brief Configures INT1 interrupt.
* @param pIntConfig: pointer to a L3GD20_InterruptConfig_TypeDef
* structure that contains the configuration setting for the L3GD20 Interrupt.
*/
void BSP_GYRO_ITConfig(GYRO_InterruptConfigTypeDef *pIntConfig)
{
uint16_t interruptconfig = 0x0000;
if (GyroscopeDrv->ConfigIT != NULL)
{
/* Configure latch Interrupt request and axe interrupts */
interruptconfig |= ((uint8_t)(pIntConfig->Latch_Request | \
pIntConfig->Interrupt_Axes) << 8);
interruptconfig |= (uint8_t)(pIntConfig->Interrupt_ActiveEdge);
GyroscopeDrv->ConfigIT(interruptconfig);
}
}
/**
* @brief Enables INT1 or INT2 interrupt.
* @param IntPin: Interrupt pin
* This parameter can be:
* @arg L3GD20_INT1
* @arg L3GD20_INT2
* @arg I3G4250D_INT1
* @arg I3G4250D_INT2
*/
void BSP_GYRO_EnableIT(uint8_t IntPin)
{
if (GyroscopeDrv->EnableIT != NULL)
{
GyroscopeDrv->EnableIT(IntPin);
}
}
/**
* @brief Disables INT1 or INT2 interrupt.
* @param IntPin: Interrupt pin
* This parameter can be:
* @arg L3GD20_INT1
* @arg L3GD20_INT2
* @arg I3G4250D_INT1
* @arg I3G4250D_INT2
*/
void BSP_GYRO_DisableIT(uint8_t IntPin)
{
if (GyroscopeDrv->DisableIT != NULL)
{
GyroscopeDrv->DisableIT(IntPin);
}
}
/**
* @brief Get XYZ angular acceleration.
* @param pfData: pointer on floating array
*/
void BSP_GYRO_GetXYZ(float *pfData)
{
if (GyroscopeDrv->GetXYZ != NULL)
{
GyroscopeDrv->GetXYZ(pfData);
}
}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/