forked from parallaxinc/spin-standard-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensor.accel.3dof.mma7455.spin
407 lines (355 loc) · 13.7 KB
/
sensor.accel.3dof.mma7455.spin
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
{
---------------------------------------------------------------------------------------------------
Filename: sensor.accel.3dof.mma7455.spin
Description: Driver for the NXP/Freescale MMA7455 3-axis accelerometer
Author: Jesse Burt
Started: Nov 27, 2019
Updated: Jan 26, 2024
Copyright (c) 2024 - See end of file for terms of use.
---------------------------------------------------------------------------------------------------
}
#include "sensor.accel.common.spinh"
CON
SLAVE_WR = core#SLAVE_ADDR
SLAVE_RD = core#SLAVE_ADDR|1
DEF_SCL = 28
DEF_SDA = 29
DEF_HZ = 100_000
DEF_ADDR = 0
I2C_MAX_FREQ= core#I2C_MAX_FREQ
' Indicate to user apps how many Degrees of Freedom each sub-sensor has
' (also imply whether or not it has a particular sensor)
ACCEL_DOF = 3
GYRO_DOF = 0
MAG_DOF = 0
BARO_DOF = 0
DOF = ACCEL_DOF + GYRO_DOF + MAG_DOF + BARO_DOF
R = 0
W = 1
' Scales and data rates used during calibration/bias/offset process
CAL_XL_SCL = 2
CAL_G_SCL = 0
CAL_M_SCL = 0
CAL_XL_DR = 250
CAL_G_DR = 0
CAL_M_DR = 0
' Operating modes
#0, STANDBY, MEASURE, LEVELDET, PULSEDET
' Individual axes
X_AXIS = 0
Y_AXIS = 1
Z_AXIS = 2
' Clear interrupt pins state
INT2 = 1 << 1
INT1 = 1 << 0
' Interrupts
DRDY = 1 << 7
THSIGNED = 1 << 6
ZTHR = 1 << 5
YTHR = 1 << 4
XTHR = 1 << 3
TH1_PLS2 = %00 << 1 ' INT1: Thresh, INT2: Pulse
PLS1_TH2 = %01 << 1 ' INT1: Pulse, INT2: Thresh
SPLS1_DPLS2 = %10 << 1 ' INT1: 1x Pulse, INT2: 2x Pulse
INTPIN_INV = 1
VAR
long _ascl
byte _addr_bits
OBJ
{ decide: Bytecode I2C engine, or PASM? Default is PASM if BC isn't specified }
#ifdef MMA7455_I2C_BC
i2c : "com.i2c.nocog" ' BC I2C engine
#else
i2c : "com.i2c" ' PASM I2C engine
#endif
core: "core.con.mma7455"
time: "time"
PUB null{}
'This is not a top-level object
PUB start{}: status
' Start using "standard" Propeller I2C pins and 100kHz
return startx(DEF_SCL, DEF_SDA, DEF_HZ, DEF_ADDR)
PUB startx(SCL_PIN, SDA_PIN, I2C_HZ, ADDR_BITS): status
' Start using custom settings
if (lookdown(SCL_PIN: 0..31) and lookdown(SDA_PIN: 0..31) and I2C_HZ =< core#I2C_MAX_FREQ)
if (status := i2c.init(SCL_PIN, SDA_PIN, I2C_HZ))
time.msleep(1)
_addr_bits := (ADDR_BITS << 1)
if (dev_id{} == core#DEVID_RESP)
return
' if this point is reached, something above failed
' Double check I/O pin assignments, connections, power
' Lastly - make sure you have at least one free core/cog
return FALSE
PUB stop{}
' Stop the driver
i2c.deinit{}
PUB preset_active{}
' Enable sensor power and set full-scale range
accel_opmode(MEASURE)
accel_scale(2)
PUB preset_thresh_detect{}
' Enable sensor power, set full-scale range, and set up
' to trigger an interrupt on INT1 when an acceleration threshold is reached
accel_opmode(LEVELDET)
accel_scale(2)
PUB accel_bias(x, y, z) | tmp[2]
' Read accelerometer calibration offset values
' x, y, z: pointers to copy offsets to
readreg(core#XOFFL, 6, @tmp)
long[x] := (((tmp.word[X_AXIS] << 22) ~> 22) * 2)
long[y] := (((tmp.word[Y_AXIS] << 22) ~> 22) * 2)
long[z] := (((tmp.word[Z_AXIS] << 22) ~> 22) * 2)
PUB accel_data(ptr_x, ptr_y, ptr_z) | tmp[2]
' Reads the Accelerometer output registers
longfill(@tmp, 0, 2)
case _ascl
2, 4: ' 2g/4g (8-bit)
readreg(core#XOUT8, 3, @tmp)
long[ptr_x] := ~tmp.byte[X_AXIS]
long[ptr_y] := ~tmp.byte[Y_AXIS]
long[ptr_z] := ~tmp.byte[Z_AXIS]
8: ' 8g (10-bit)
readreg(core#XOUTL, 6, @tmp)
' extend sign
long[ptr_x] := (tmp.word[X_AXIS] << 22) ~> 22
long[ptr_y] := (tmp.word[Y_AXIS] << 22) ~> 22
long[ptr_z] := (tmp.word[Z_AXIS] << 22) ~> 22
PUB accel_data_rate(rate): curr_rate
' Set accelerometer output data rate, in Hz
' Valid values:
' 125, 250
' Any other value polls the chip and returns the current setting
curr_rate := 0
readreg(core#CTL1, 1, @curr_rate)
case rate
125, 250:
rate := lookdownz(rate: 125, 250) << core#DFBW
other:
curr_rate := ((curr_rate >> core#DFBW) & 1)
return lookupz(curr_rate: 125, 250)
rate := ((curr_rate & core#DFBW_MASK) | rate)
writereg(core#CTL1, 1, @rate)
PUB accel_data_overrun{}: flag
' Flag indicating previously acquired data has been overwritten
' Returns: TRUE (-1) if data has overflowed/been overwritten, FALSE otherwise
flag := 0
readreg(core#STATUS, 1, @flag)
return (((flag >> core#DOVR) & 1) == 1)
PUB accel_data_rdy{}: flag
' Flag indicating data is ready
' Returns: TRUE (-1) if data ready, FALSE otherwise
flag := 0
readreg(core#STATUS, 1, @flag)
return ((flag & 1) == 1)
PUB accel_int{}: int_src
' Accelerometer interrupt source(s)
' Bits: 7..0
' 7: Level detection (X-axis)
' 6: Level detection (Y-axis)
' 5: Level detection (Z-axis)
' 4: Pulse detection (X-axis)
' 3: Pulse detection (Y-axis)
' 2: Pulse detection (Z-axis)
' 1: Interrupt assigned to INT2 asserted
' 0: Interrupt assigned to INT1 asserted
int_src := 0
readreg(core#DETSRC, 1, @int_src)
PUB accel_int_clear(mask)
' Clear accelerometer interrupts
' Bits: 1..0
' 1: Clear INT2 interrupt
' 0: Clear INT1 interrupt
' Any other value is ignored
case mask
%00..%11:
writereg(core#INTRST, 1, @mask) ' clear interrupts
mask := 0
writereg(core#INTRST, 1, @mask) ' reset bits (not cleared
' automatically)
PUB accel_int_mask(mask): curr_mask | drpd
' Set accelerometer interrupt mask
' Bits 7..0:
' 7:
' Data-ready on INT1 pin (doesn't affect accel_data_rdy())
' 6:
' 0: accel_int_set_thresh*() are unsigned (0g..+8g)
' 1: accel_int_set_thresh*() are signed (-8g..+8g)
' 5..3
' 5: Z-axis detection
' 4: Y-axis detection
' 3: X-axis detection
' 2..1 INT1 INT2
' %00: Threshold detection Pulse/Click/Tap detection
' %01: Pulse/Click/Tap detection Threshold detection
' %10: Single pulse detection Single/double pulse detection
' 0:
' 0: accel_int() behavior
' INT1 bit indicates INT1 interrupt
' INT2 bit indicates INT2 interrupt
' 1: accel_int() behavior
' INT1 bit indicates INT2 interrupt
' INT2 bit indicates INT1 interrupt
' Any other value polls the chip and returns the current setting
curr_mask := 0
readreg(core#CTL1, 1, @curr_mask)
drpd := 0
readreg(core#MCTL, 1, @drpd) ' read data-ready enable bit
case mask
%0000_0000..%1111_1111: ' MSB is for DRPD, not DFBW
mask ^= %00_111_000
other:
curr_mask := (curr_mask & core#INTMASK_BITS) ^ core#ZYXDA_INV
' ignore all bits from the MCTL reg except the DRPD bit,
' invert it (because 0 is enabled, 1 is disabled),
' and place it in the MSB so it can be combined with the intmask
drpd := (((drpd & core#DRPD_BIT) ^ core#DRPD_BIT) << 1)
return (curr_mask | drpd)
if (mask & %10000000) ' if bit 7 is set,
drpd &= core#DRPD_EN ' make sure the data-ready
else ' function is enabled
drpd |= core#DRPD_DIS
writereg(core#MCTL, 1, @drpd)
mask &= core#INTMASK_BITS
mask := ((curr_mask & core#INTMASK_MASK) | mask)
writereg(core#CTL1, 1, @mask)
PUB accel_int_set_thresh(thresh)
' Set interrupt threshold
' Valid values: 0..8_000000 (0..8g's; clamped to range)
thresh := ((0 #> thresh <# 8_000000) / 62_500)
writereg(core#LDTH, 1, @thresh)
PUB accel_int_thresh_x(thresh): curr_thr
' Set interrupt threshold, X-axis
' Valid values: 0..8_000000 (0..8g)
' NOTE: Range is fixed at 0..8g, regardless of accel_scale() setting
' NOTE: X, Y, Z axis are locked together (chip limitation);
' separate X, Y, Z methods provided for API compatibility
accel_int_set_thresh(thresh)
PUB accel_int_thresh_y(thresh): curr_thr
' Set interrupt threshold, Y-axis
' Any other value returns the current setting
' NOTE: Range is fixed at 0..8g, regardless of accel_scale() setting
' NOTE: X, Y, Z axis are locked together (chip limitation);
' separate X, Y, Z methods provided for API compatibility
accel_int_set_thresh(thresh)
PUB accel_int_thresh_z(thresh): curr_thr
' Set interrupt threshold, Z-axis
' Any other value returns the current setting
' NOTE: Range is fixed at 0..8g, regardless of accel_scale() setting
' NOTE: X, Y, Z axis are locked together (chip limitation);
' separate X, Y, Z methods provided for API compatibility
accel_int_set_thresh(thresh)
PUB accel_int_thresh{}: thresh
' Get interrupt threshold
thresh := 0
readreg(core#LDTH, 1, @thresh)
return (~thresh * 62_500) ' convert to micro-g's
PUB accel_opmode(mode): curr_mode
' Set operating mode
' Valid values:
' STANDBY (%00): Standby
' MEASURE (%01): Measurement mode
' LEVELDET (%10): Level detection mode
' PULSEDET (%11): Pulse detection mode
' Any other value polls the chip and returns the current setting
curr_mode := 0
readreg(core#MCTL, 1, @curr_mode)
case mode
STANDBY, MEASURE, LEVELDET, PULSEDET:
other:
return curr_mode & core#MODE_BITS
mode := ((curr_mode & core#MODE_MASK) | mode)
writereg(core#MCTL, 1, @mode)
PUB accel_scale(scale): curr_scl
' Set measurement range of the accelerometer, in g's
' Valid values: 2, 4, *8
' Any other value polls the chip and returns the current setting
curr_scl := 0
readreg(core#MCTL, 1, @curr_scl)
case scale
2, 4:
_ares := (2_000000 * scale) / 256 ' 8-bit output
8:
_ares := (2_000000 * scale) / 1024 ' 10-bit output
other:
curr_scl := (curr_scl >> core#GLVL) & core#GLVL_BITS
return lookupz(curr_scl: 8, 2, 4)
_ascl := scale
scale := lookdownz(scale: 8, 2, 4) << core#GLVL
scale := ((curr_scl & core#GLVL_MASK) | scale)
writereg(core#MCTL, 1, @scale)
PUB accel_self_test(state): curr_state
' Enable self-test
' Valid values: TRUE (-1 or 1), FALSE (0)
' Any other value polls the chip and returns the current setting
' During self-test, the output data changes approximately as follows:
' Z: +0.5g..+1.296g (+1.000g typ) (32..83LSB * 15625 micro-g per LSB)
curr_state := 0
readreg(core#MCTL, 1, @curr_state)
case ||(state)
0, 1:
state := ||(state) << core#STON
other:
return (((curr_state >> core#STON) & 1) == 1)
state := ((curr_state & core#STON_MASK) | state)
writereg(core#MCTL, 1, @state)
PUB accel_set_bias(x, y, z)
' Write accelerometer calibration offset values
' Valid values:
' x, y, z:
' -128..127 (2g or 4g scale)
' -512..511 (8g scale)
' (clamped to range)
x := (-512 #> x <# 511) * -2
y := (-512 #> y <# 511) * -2
z := (-512 #> z <# 511) * -2
writereg(core#XOFFL, 2, @x)
writereg(core#YOFFL, 2, @y)
writereg(core#ZOFFL, 2, @z)
PUB dev_id{}: id
' Get chip/device ID
' Known values: $55
id := 0
readreg(core#WHOAMI, 1, @id)
PRI readReg(reg_nr, nr_bytes, ptr_buff) | cmd_pkt
' Read nr_bytes from slave device into ptr_buff
case reg_nr
$00..$0B, $0D..$1E:
cmd_pkt.byte[0] := (SLAVE_WR | _addr_bits)
cmd_pkt.byte[1] := reg_nr
i2c.start{}
i2c.wrblock_lsbf(@cmd_pkt, 2)
i2c.start{}
i2c.write(SLAVE_RD | _addr_bits)
i2c.rdblock_lsbf(ptr_buff, nr_bytes, TRUE)
i2c.stop{}
other:
return
PRI writeReg(reg_nr, nr_bytes, ptr_buff) | cmd_pkt
' Write nr_bytes from ptr_buff to slave device
case reg_nr
$10..$1E:
cmd_pkt.byte[0] := (SLAVE_WR | _addr_bits)
cmd_pkt.byte[1] := reg_nr
i2c.start{}
i2c.wrblock_lsbf(@cmd_pkt, 2)
i2c.wrblock_lsbf(ptr_buff, nr_bytes)
i2c.stop{}
other:
return
DAT
{
Copyright 2024 Jesse Burt
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
}