-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbma222drv.c
executable file
·293 lines (268 loc) · 8.96 KB
/
bma222drv.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
//*****************************************************************************
// BMA222drv.c - Accelerometer sensor driver APIs.
//
// Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
//
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the
// distribution.
//
// Neither the name of Texas Instruments Incorporated nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//*****************************************************************************
//*****************************************************************************
//
//! \addtogroup oob
//! @{
//
//*****************************************************************************
#include <stdio.h>
#include <math.h>
#include "bma222drv.h"
// Common interface includes
#include "i2c_if.h"
#include "uart_if.h"
//*****************************************************************************
// MACRO DEFINITIONS
//*****************************************************************************
#define FAILURE -1
#define SUCCESS 0
#define RET_IF_ERR(Func) {int iRetVal = (Func); \
if (SUCCESS != iRetVal) \
return iRetVal;}
#define DBG_PRINT Report
//****************************************************************************
// LOCAL FUNCTION DEFINITIONS
//****************************************************************************
//****************************************************************************
//
//! Returns the value in the specified register
//!
//! \param ucRegAddr is the offset register address
//! \param pucRegValue is the pointer to the register value store
//!
//! This function
//! 1. Returns the value in the specified register
//!
//! \return 0: Success, < 0: Failure.
//
//****************************************************************************
int
GetRegisterValue(unsigned char ucRegAddr, unsigned char *pucRegValue)
{
//
// Invoke the readfrom API to get the required byte
//
if(I2C_IF_ReadFrom(BMA222_DEV_ADDR, &ucRegAddr, 1,
pucRegValue, 1) != 0)
{
DBG_PRINT("I2C readfrom failed\n\r");
return FAILURE;
}
return SUCCESS;
}
//****************************************************************************
//
//! Sets the value in the specified register
//!
//! \param ucRegAddr is the offset register address
//! \param ucRegValue is the register value to be set
//!
//! This function
//! 1. Returns the value in the specified register
//!
//! \return 0: Success, < 0: Failure.
//
//****************************************************************************
int
SetRegisterValue(unsigned char ucRegAddr, unsigned char ucRegValue)
{
unsigned char ucData[2];
//
// Select the register to be written followed by the value.
//
ucData[0] = ucRegAddr;
ucData[1] = ucRegValue;
//
// Initiate the I2C write
//
if(I2C_IF_Write(BMA222_DEV_ADDR,ucData,2,1) == 0)
{
return SUCCESS;
}
else
{
DBG_PRINT("I2C write failed\n\r");
}
return FAILURE;
}
//****************************************************************************
//
//! Reads a block of continuous data
//!
//! \param ucRegAddr is the start offset register address
//! \param pucBlkData is the pointer to the data value store
//! \param ucBlkDataSz is the size of data to be read
//!
//! This function
//! 1. Returns the data values in the specified store
//!
//! \return 0: Success, < 0: Failure.
//
//****************************************************************************
int
BlockRead(unsigned char ucRegAddr,
unsigned char *pucBlkData,
unsigned char ucBlkDataSz)
{
//
// Invoke the readfrom I2C API to get the required bytes
//
if(I2C_IF_ReadFrom(BMA222_DEV_ADDR, &ucRegAddr, 1,
pucBlkData, ucBlkDataSz) != 0)
{
DBG_PRINT("I2C readfrom failed\n");
return FAILURE;
}
return SUCCESS;
}
//****************************************************************************
//
//! Initialize the BMA222 accelerometer device with defaults
//!
//! \param None
//!
//! This function
//! 1. Reads the CHIP ID.
//!
//! \return 0: Success, < 0: Failure.
//
//****************************************************************************
int
BMA222Open()
{
unsigned char ucRegVal;
//
// Read the CHIP ID NUM
//
RET_IF_ERR(GetRegisterValue(BMA222_CHID_ID_NUM, &ucRegVal));
DBG_PRINT("CHIP ID: 0x%x\n\r", ucRegVal);
return SUCCESS;
}
//****************************************************************************
//
//! Place the BMA222 accelerometer device to standby
//!
//! \param None
//!
//! This function
//! 1. Sets the device to standby mode.
//!
//! \return 0: Success, < 0: Failure.
//
//****************************************************************************
int
BMA222Close()
{
return SUCCESS;
}
//****************************************************************************
//
//! Get the accelerometer data readings
//!
//! \param pfAccX pointer to the AccX store
//! \param pfAccY pointer to the AccY store
//! \param pfAccZ pointer to the AccZ store
//!
//! This function
//! 1. Reads the data registers over I2C.
//! 2. Applies the range conversion to the raw values
//!
//! \return 0: Success, < 0: Failure.
//
//****************************************************************************
int
BMA222Read(signed char *pcAccX, signed char *pcAccY, signed char *pcAccZ)
{
char cAccX = 0;
char cAccY = 0;
char cAccZ = 0;
//
// Read the acclerometer output registers LSB and MSB
//
RET_IF_ERR(BlockRead(BMA222_ACC_DATA_X, (unsigned char *)&cAccX,
sizeof(cAccX)));
RET_IF_ERR(BlockRead(BMA222_ACC_DATA_Y, (unsigned char *)&cAccY,
sizeof(cAccY)));
RET_IF_ERR(BlockRead(BMA222_ACC_DATA_Z, (unsigned char *)&cAccZ,
sizeof(cAccZ)));
*pcAccX = cAccX;
*pcAccY = cAccY;
*pcAccZ = cAccZ;
return SUCCESS;
}
//****************************************************************************
//
//! Get the raw accelerometer data register readings
//!
//! \param psAccX pointer to the raw AccX store
//! \param psAccY pointer to the raw AccY store
//! \param psAccZ pointer to the raw AccZ store
//!
//! This function
//! 1. Reads the data registers over I2C.
//! 2. Returns the accelerometer readings
//!
//! \return 0: Success, < 0: Failure.
//
//****************************************************************************
int
BMA222ReadNew(signed char *pcAccX, signed char *pcAccY, signed char *pcAccZ)
{
char cAccX[6];
//
// Read the acclerometer output registers LSB and MSB
//
RET_IF_ERR(BlockRead(BMA222_ACC_DATA_X_NEW, (unsigned char *)cAccX,6));
//
// Check whether new Sensor Data is available
//
if((cAccX[0] & 0x1) && (cAccX[2] & 0x1) && (cAccX[4] & 0x1))
{
*pcAccX = cAccX[1];
*pcAccY = cAccX[3];
*pcAccZ = cAccX[5];
return SUCCESS;
}
//New Sensor Data Not Available
return FAILURE;
}
//*****************************************************************************
//
// Close the Doxygen group.
//! @}
//
//*****************************************************************************