-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensor.pressure.mpl3115a2.spin
354 lines (272 loc) · 10.6 KB
/
sensor.pressure.mpl3115a2.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
{
----------------------------------------------------------------------------------------------------
Filename: sensor.baro.mpl3115a2.spin
Description: Driver for MPL3115A2 Pressure sensor with altimetry
Author: Jesse Burt
Started: Feb 1, 2021
Updated: Oct 16, 2024
Copyright (c) 2024 - See end of file for terms of use.
----------------------------------------------------------------------------------------------------
}
#include "sensor.pressure.common.spinh" ' use code common to all pressure/alt
#include "sensor.temp.common.spinh" ' and temperature sensor drivers
CON
{ default I/O settings; these can be overridden in the parent object }
SCL = 28
SDA = 29
I2C_FREQ = 100_000
I2C_ADDR = 0
SLAVE_WR = core.SLAVE_ADDR
SLAVE_RD = core.SLAVE_ADDR|1
I2C_MAX_FREQ= core.I2C_MAX_FREQ
' Operating modes
SINGLE = 0
CONT = 1
' Barometer/altitude modes
BARO = 0
ALT = 1
OBJ
{ decide: Bytecode I2C engine, or PASM? Default is PASM if BC isn't specified }
#ifdef MPL3115A2_I2C_BC
i2c: "com.i2c.nocog" ' BC I2C engine
#else
i2c: "com.i2c" ' PASM I2C engine
#endif
core: "core.con.mpl3115a2" ' hw-specific constants
time: "time" ' basic timing functions
u64: "math.unsigned64" ' 64-bit unsigned int math
PUB null()
' This is not a top-level object
PUB start(): status
' Start using default I/O settings
return startx(SCL, SDA, I2C_FREQ)
PUB startx(SCL_PIN, SDA_PIN, I2C_HZ): status
' Start the driver with custom I/O settings
' SCL_PIN: I2C clock, 0..31
' SDA_PIN: I2C data, 0..31
' I2C_HZ: I2C clock speed (max official specification is 400_000 but is unenforced)
' Returns:
' cog ID+1 of I2C engine on success (= calling cog ID+1, if the bytecode I2C engine is used)
' 0 on failure
if ( lookdown(SCL_PIN: 0..31) and lookdown(SDA_PIN: 0..31) )
if ( status := i2c.init(SCL_PIN, SDA_PIN, I2C_HZ) )
time.usleep(core.T_POR) ' wait for device startup
if ( dev_id() == core.DEVID_RESP ) ' validate device
return
' if this point is reached, something above failed
' Re-check I/O pin assignments, bus speed, connections, power
' Lastly - make sure you have at least one free core/cog
return FALSE
PUB stop()
' Stop the driver
i2c.deinit()
PUB defaults()
' Set factory defaults
reset()
PUB preset_active()
' Like Defaults(), but
' * continuous sensor measurement
reset()
opmode(CONT)
PUB alt_baro_mode(mode=-2): curr_mode | opmd_orig
' Set sensor to altimeter or barometer mode
' Valid values:
' BARO (0): Sensor outputs barometric pressure data
' ALT (1): Sensor outputs altitude data
curr_mode := 0
readreg(core.CTRL_REG1, 1, @curr_mode)
case mode
BARO, ALT:
mode <<= core.ALT
other:
return ((curr_mode >> core.ALT) & 1)
opmd_orig := (curr_mode & 1) ' get current opmode
' must be in standby/SINGLE mode to set certain bits in this reg, so
' clear the opmode bit
mode := ((curr_mode & core.ALT_MASK & core.SBYB_MASK) | mode)
writereg(core.CTRL_REG1, 1, @mode)
if (opmd_orig == CONT) ' restore opmode, if it
opmode(opmd_orig) ' was CONT, previously
PUB alt_bias(offs): curr_offs
' Get altitude bias/offset
' Returns: meters
curr_offs := 0
readreg(core.OFF_H, 1, @curr_offs)
return ~curr_offs ' extend sign
PUB alt_data(): alt_adc
' Read altimeter data
' NOTE: This is valid as altitude data _only_ if alt_baro_mode() is set to ALT (1)
alt_adc := 0
readreg(core.OUT_P_MSB, 3, @alt_adc)
PUB alt_set_bias(offs)
' Set altitude bias/offset, in meters
' Valid values: -128..127
offs := (-128 #> offs <# 127) ' LSB = 1m
writereg(core.OFF_H, 1, @offs)
PUB altitude(): alt_cm
' Read altitude, in centimeters
' NOTE: This is valid as altitude data _only_ if alt_baro_mode() is set to ALT (1)
return alt_word2cm(alt_data())
PUB alt_word2cm(alt_adc): alt_cm
' Convert altitude word to altitude, in centimeters
return u64.multdiv(alt_adc, 100_00, 65536)
PUB dev_id(): id
' Read device identification
' Returns: $C4
readreg(core.WHO_AM_I, 1, @id)
PUB measure() | tmp, meas
' Perform measurement
tmp := 0
readreg(core.CTRL_REG1, 1, @tmp)
case opmode()
SINGLE:
tmp |= (1 << core.OST) ' bit auto-clears in SINGLE
writereg(core.CTRL_REG1, 1, @tmp) ' mode
CONT:
tmp |= (1 << core.OST)
writereg(core.CTRL_REG1, 1, @tmp)
tmp &= core.OST_MASK ' bit doesn't auto-clear in
writereg(core.CTRL_REG1, 1, @tmp) ' CONT mode; do it manually
PUB opmode(mode=-2): curr_mode
' Set operating mode
' Valid values:
' SINGLE (0): Single-shot/standby
' CONT (1): Continuous measurement
curr_mode := 0
readreg(core.CTRL_REG1, 1, @curr_mode)
case mode
SINGLE, CONT:
other:
return (curr_mode & 1)
mode := ((curr_mode & core.SBYB_MASK) | mode)
writereg(core.CTRL_REG1, 1, @mode)
PUB oversampling(ratio=-2): curr_ratio | opmd_orig
' Set output data ratio
' Valid values: 1, 2, 4, 8, 16, 32, 64, 128
' Any other value polls the chip and returns the current setting
curr_ratio := 0
readreg(core.CTRL_REG1, 1, @curr_ratio)
case ratio
1, 2, 4, 8, 16, 32, 64, 128:
ratio := lookdownz(ratio: 1, 2, 4, 8, 16, 32, 64, 128) << core.OS
other:
curr_ratio := (curr_ratio >> core.OS) & core.OS_BITS
return lookupz(curr_ratio: 1, 2, 4, 8, 16, 32, 64, 128)
opmd_orig := (curr_ratio & 1) ' get current opmode
' must be in standby/SINGLE mode to set certain bits in this reg, so
' clear the opmode bit
ratio := ((curr_ratio & core.OS_MASK & core.SBYB_MASK) | ratio)
writereg(core.CTRL_REG1, 1, @ratio)
if opmd_orig == CONT ' restore opmode, if it
opmode(opmd_orig) ' was CONT, previously
PUB press_bias(): offs
' Get pressure bias/offset
' Returns: Pascals
offs := 0
readreg(core.OFF_P, 1, @offs)
return (~offs * 4) ' extend sign
PUB press_data(): press_adc
' Read pressure data
' Returns: s20 (Q18.2 fixed-point)
' NOTE: This is valid as pressure data _only_ if alt_baro_mode() is
' set to BARO (0)
press_adc := 0
readreg(core.OUT_P_MSB, 3, @press_adc)
PUB press_data_rdy(): flag
' dummy method
return true
PUB press_set_bias(offs)
' Set pressure bias/offset, in Pascals
' Valid values: -512..508 (clamped to range)
offs := (-512 #> offs <# 508) / 4 ' LSB = 4Pa
writereg(core.OFF_P, 1, @offs)
PUB press_word2pa(p_word): p_pa
' Convert pressure ADC word to pressure in Pascals
return ((p_word * 100) / 640)
PUB reset() | tmp
' Reset the device
tmp := (1 << core.RST)
writereg(core.CTRL_REG1, 1, @tmp)
time.usleep(core.T_POR)
PUB sea_lvl_press(): curr_press
' Get sea-level pressure for altitude calculations
' Returns: Pascals
curr_press := 0
readreg(core.BAR_IN_MSB, 2, @curr_press)
return curr_press << 1
PUB sea_lvl_set_press(press)
' Set sea-level pressure for altitude calculations, in Pascals
' Valid values: 0..131_070 (clamped to range)
press := (0 #> press <# 131_070) >> 1 ' LSB = 2Pa
writereg(core.BAR_IN_MSB, 2, @press)
PUB temp_bias(): curr_offs
' Get temperature bias/offset
' Returns: ten-thousandths of a degree C
curr_offs := 0
readreg(core.OFF_T, 1, @curr_offs)
return (~curr_offs * 0_0625) ' extend sign
PUB temp_data(): temp_adc
' Read temperature data
' Returns: s12 (Q8.4 fixed-point)
temp_adc := 0
readreg(core.OUT_T_MSB, 2, @temp_adc)
PUB temp_set_bias(offs)
' Set temperature bias/offset, in ten-thousandths of a degree C
offs := (-8_0000 #> offs <# 7_9375) / 0_0625' LSB = 0.0625C
writereg(core.OFF_T, 1, @offs)
PUB temp_word2deg(temp_word): temp
' Calculate temperature in degrees Celsius, given ADC word
' extend sign, chop off reserved LSBs, scale up to hundredths
' divide down to scale to degrees C
temp := (((~~temp_word) ~> 4) * 100) / 16
case _temp_scale
C:
return temp
F:
return ((temp * 9) / 5) + 32_00
other:
return FALSE
PRI readreg(reg_nr, nr_bytes, ptr_buff) | cmd_pkt
' Read nr_bytes from the device into ptr_buff
case reg_nr ' validate register num
core.STATUS..core.OFF_H:
cmd_pkt.byte[0] := SLAVE_WR
cmd_pkt.byte[1] := reg_nr
i2c.start()
i2c.wrblock_lsbf(@cmd_pkt, 2)
i2c.start()
i2c.wr_byte(SLAVE_RD)
' write MSByte to LSByte
i2c.rdblock_msbf(ptr_buff, nr_bytes, i2c.NAK)
i2c.stop()
other: ' invalid reg_nr
return
PRI writereg(reg_nr, nr_bytes, ptr_buff) | cmd_pkt
' Write nr_bytes to the device from ptr_buff
case reg_nr
core.F_SETUP, core.PT_DATA_CFG..core.OFF_H:
cmd_pkt.byte[0] := SLAVE_WR
cmd_pkt.byte[1] := reg_nr
i2c.start()
i2c.wrblock_lsbf(@cmd_pkt, 2)
' write MSByte to LSByte
i2c.wrblock_msbf(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.
}