-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathms5611.c
More file actions
executable file
·449 lines (386 loc) · 13.2 KB
/
ms5611.c
File metadata and controls
executable file
·449 lines (386 loc) · 13.2 KB
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
/**
* \file ms5611.c
*
* \brief MS5611 Temperature sensor driver source file
*
* Copyright (c) 2016 Measurement Specialties. All rights reserved.
*
* For details on programming, refer to ms5611 datasheet :
* http://www.meas-spec.com/downloads/MS5611-01BA03.pdf
*
*/
#include "ms5611.h"
/**
* The header "i2c.h" has to be implemented for your own platform to
* conform the following protocol :
*
* enum i2c_transfer_direction {
* I2C_TRANSFER_WRITE = 0,
* I2C_TRANSFER_READ = 1,
* };
*
* enum status_code {
* STATUS_OK = 0x00,
* STATUS_ERR_OVERFLOW = 0x01,
* STATUS_ERR_TIMEOUT = 0x02,
* };
*
* struct i2c_master_packet {
* // Address to slave device
* uint16_t address;
* // Length of data array
* uint16_t data_length;
* // Data array containing all data to be transferred
* uint8_t *data;
* };
*
* void i2c_master_init(void);
* enum status_code i2c_master_read_packet_wait(struct i2c_master_packet *const packet);
* enum status_code i2c_master_write_packet_wait(struct i2c_master_packet *const packet);
* enum status_code i2c_master_write_packet_wait_no_stop(struct i2c_master_packet *const packet);
*/
#include "i2c.h"
#ifdef __cplusplus
extern "C" {
#endif
// Constants
// MS5611 device address
#define MS5611_ADDR 0x77 //0b1110111
// MS5611 device commands
#define MS5611_RESET_COMMAND 0x1E
#define MS5611_START_PRESSURE_ADC_CONVERSION 0x40
#define MS5611_START_TEMPERATURE_ADC_CONVERSION 0x50
#define MS5611_READ_ADC 0x00
#define MS5611_CONVERSION_OSR_MASK 0x0F
#define MS5611_CONVERSION_TIME_OSR_256 1000
#define MS5611_CONVERSION_TIME_OSR_512 2000
#define MS5611_CONVERSION_TIME_OSR_1024 3000
#define MS5611_CONVERSION_TIME_OSR_2048 5000
#define MS5611_CONVERSION_TIME_OSR_4096 9000
// MS5611 commands
#define MS5611_PROM_ADDRESS_READ_ADDRESS_0 0xA0
#define MS5611_PROM_ADDRESS_READ_ADDRESS_1 0xA2
#define MS5611_PROM_ADDRESS_READ_ADDRESS_2 0xA4
#define MS5611_PROM_ADDRESS_READ_ADDRESS_3 0xA6
#define MS5611_PROM_ADDRESS_READ_ADDRESS_4 0xA8
#define MS5611_PROM_ADDRESS_READ_ADDRESS_5 0xAA
#define MS5611_PROM_ADDRESS_READ_ADDRESS_6 0xAC
#define MS5611_PROM_ADDRESS_READ_ADDRESS_7 0xAE
// Coefficients indexes for temperature and pressure computation
#define MS5611_CRC_INDEX 7
#define MS5611_PRESSURE_SENSITIVITY_INDEX 1
#define MS5611_PRESSURE_OFFSET_INDEX 2
#define MS5611_TEMP_COEFF_OF_PRESSURE_SENSITIVITY_INDEX 3
#define MS5611_TEMP_COEFF_OF_PRESSURE_OFFSET_INDEX 4
#define MS5611_REFERENCE_TEMPERATURE_INDEX 5
#define MS5611_TEMP_COEFF_OF_TEMPERATURE_INDEX 6
#define MS5611_COEFFICIENT_NUMBERS 8
// Static functions
static enum ms5611_status ms5611_write_command(uint8_t);
static enum ms5611_status ms5611_read_eeprom_coeff(uint8_t, uint16_t*);
static enum ms5611_status ms5611_read_eeprom(void);
static enum ms5611_status ms5611_conversion_and_read_adc( uint8_t, uint32_t *);
static bool ms5611_crc_check (uint16_t *n_prom, uint8_t crc);
enum ms5611_resolution_osr ms5611_resolution_osr;
static uint16_t eeprom_coeff[MS5611_COEFFICIENT_NUMBERS];
static uint32_t conversion_time[5] = { MS5611_CONVERSION_TIME_OSR_256,
MS5611_CONVERSION_TIME_OSR_512,
MS5611_CONVERSION_TIME_OSR_1024,
MS5611_CONVERSION_TIME_OSR_2048,
MS5611_CONVERSION_TIME_OSR_4096};
// Default value to ensure coefficients are read before converting temperature
bool ms5611_coeff_read = false;
/**
* \brief Configures the SERCOM I2C master to be used with the MS5611 device.
*/
void ms5611_init(void)
{
ms5611_resolution_osr = ms5611_resolution_osr_4096;
/* Initialize and enable device with config. */
i2c_master_init();
}
/**
* \brief Check whether MS5611 device is connected
*
* \return bool : status of MS5611
* - true : Device is present
* - false : Device is not acknowledging I2C address
*/
bool ms5611_is_connected(void)
{
enum status_code i2c_status;
struct i2c_master_packet transfer = {
.address = MS5611_ADDR,
.data_length = 0,
.data = NULL,
};
/* Do the transfer */
i2c_status = i2c_master_write_packet_wait(&transfer);
if( i2c_status != STATUS_OK)
return false;
return true;
}
/**
* \brief Reset the MS5611 device
*
* \return ms5611_status : status of MS5611
* - ms5611_status_ok : I2C transfer completed successfully
* - ms5611_status_i2c_transfer_error : Problem with i2c transfer
* - ms5611_status_no_i2c_acknowledge : I2C did not acknowledge
*/
enum ms5611_status ms5611_reset(void)
{
return ms5611_write_command(MS5611_RESET_COMMAND);
}
/**
* \brief Set ADC resolution.
*
* \param[in] ms5611_resolution_osr : Resolution requested
*
*/
void ms5611_set_resolution(enum ms5611_resolution_osr res)
{
ms5611_resolution_osr = res;
return;
}
/**
* \brief Writes the MS5611 8-bits command with the value passed
*
* \param[in] uint8_t : Command value to be written.
*
* \return ms5611_status : status of MS5611
* - ms5611_status_ok : I2C transfer completed successfully
* - ms5611_status_i2c_transfer_error : Problem with i2c transfer
* - ms5611_status_no_i2c_acknowledge : I2C did not acknowledge
*/
enum ms5611_status ms5611_write_command( uint8_t cmd)
{
enum status_code i2c_status;
uint8_t data[1];
data[0] = cmd;
struct i2c_master_packet transfer = {
.address = MS5611_ADDR,
.data_length = 1,
.data = data,
};
/* Do the transfer */
i2c_status = i2c_master_write_packet_wait(&transfer);
if( i2c_status == STATUS_ERR_OVERFLOW )
return ms5611_status_no_i2c_acknowledge;
if( i2c_status != STATUS_OK)
return ms5611_status_i2c_transfer_error;
return ms5611_status_ok;
}
/**
* \brief Reads the ms5611 EEPROM coefficient stored at address provided.
*
* \param[in] uint8_t : Address of coefficient in EEPROM
* \param[out] uint16_t* : Value read in EEPROM
*
* \return ms5611_status : status of MS5611
* - ms5611_status_ok : I2C transfer completed successfully
* - ms5611_status_i2c_transfer_error : Problem with i2c transfer
* - ms5611_status_no_i2c_acknowledge : I2C did not acknowledge
* - ms5611_status_crc_error : CRC check error on the coefficients
*/
enum ms5611_status ms5611_read_eeprom_coeff(uint8_t command, uint16_t *coeff)
{
enum ms5611_status status;
enum status_code i2c_status;
uint8_t buffer[2];
buffer[0] = 0;
buffer[1] = 0;
/* Read data */
struct i2c_master_packet read_transfer = {
.address = MS5611_ADDR,
.data_length = 2,
.data = buffer,
};
// Send the conversion command
status = ms5611_write_command(command);
if(status != ms5611_status_ok)
return status;
i2c_status = i2c_master_read_packet_wait(&read_transfer);
if( i2c_status == STATUS_ERR_OVERFLOW )
return ms5611_status_no_i2c_acknowledge;
if( i2c_status != STATUS_OK)
return ms5611_status_i2c_transfer_error;
*coeff = (buffer[0] << 8) | buffer[1];
if (*coeff == 0)
return ms5611_status_i2c_transfer_error;
return ms5611_status_ok;
}
/**
* \brief Reads the ms5611 EEPROM coefficients to store them for computation.
*
* \return ms5611_status : status of MS5611
* - ms5611_status_ok : I2C transfer completed successfully
* - ms5611_status_i2c_transfer_error : Problem with i2c transfer
* - ms5611_status_no_i2c_acknowledge : I2C did not acknowledge
* - ms5611_status_crc_error : CRC check error on the coefficients
*/
enum ms5611_status ms5611_read_eeprom(void)
{
enum ms5611_status status;
uint8_t i;
for( i=0 ; i< MS5611_COEFFICIENT_NUMBERS ; i++)
{
status = ms5611_read_eeprom_coeff( MS5611_PROM_ADDRESS_READ_ADDRESS_0 + i*2, eeprom_coeff+i);
if(status != ms5611_status_ok)
return status;
}
if( !ms5611_crc_check( eeprom_coeff, eeprom_coeff[MS5611_CRC_INDEX] & 0x000F ) )
return ms5611_status_crc_error;
ms5611_coeff_read = true;
return ms5611_status_ok;
}
/**
* \brief Triggers conversion and read ADC value
*
* \param[in] uint8_t : Command used for conversion (will determine Temperature vs Pressure and osr)
* \param[out] uint32_t* : ADC value.
*
* \return ms5611_status : status of MS5611
* - ms5611_status_ok : I2C transfer completed successfully
* - ms5611_status_i2c_transfer_error : Problem with i2c transfer
* - ms5611_status_no_i2c_acknowledge : I2C did not acknowledge
*/
static enum ms5611_status ms5611_conversion_and_read_adc(uint8_t cmd, uint32_t *adc)
{
enum ms5611_status status;
enum status_code i2c_status;
uint8_t buffer[3];
buffer[0] = 0;
buffer[1] = 0;
buffer[2] = 0;
/* Read data */
struct i2c_master_packet read_transfer = {
.address = MS5611_ADDR,
.data_length = 3,
.data = buffer,
};
status = ms5611_write_command(cmd);
// delay conversion depending on resolution
delay_ms( conversion_time[ (cmd & MS5611_CONVERSION_OSR_MASK)/2 ]/1000 );
if( status != ms5611_status_ok)
return status;
// Send the read command
status = ms5611_write_command(MS5611_READ_ADC);
if( status != ms5611_status_ok)
return status;
i2c_status = i2c_master_read_packet_wait(&read_transfer);
if( i2c_status == STATUS_ERR_OVERFLOW )
return ms5611_status_no_i2c_acknowledge;
if( i2c_status != STATUS_OK)
return ms5611_status_i2c_transfer_error;
*adc = ((uint32_t)buffer[0] << 16) | ((uint32_t)buffer[1] << 8) | buffer[2];
return status;
}
/**
* \brief Reads the temperature and pressure ADC value and compute the compensated values.
*
* \param[out] float* : Celsius Degree temperature value
* \param[out] float* : mbar pressure value
*
* \return ms5611_status : status of MS5611
* - ms5611_status_ok : I2C transfer completed successfully
* - ms5611_status_i2c_transfer_error : Problem with i2c transfer
* - ms5611_status_no_i2c_acknowledge : I2C did not acknowledge
* - ms5611_status_crc_error : CRC check error on the coefficients
*/
enum ms5611_status ms5611_read_temperature_and_pressure( float *temperature, float *pressure)
{
enum ms5611_status status = ms5611_status_ok;
uint32_t adc_temperature, adc_pressure;
int32_t dT, TEMP;
int64_t OFF, SENS, P, T2, OFF2, SENS2;
uint8_t cmd;
// If first time adc is requested, get EEPROM coefficients
if( ms5611_coeff_read == false )
status = ms5611_read_eeprom();
if( status != ms5611_status_ok)
return status;
// First read temperature
cmd = ms5611_resolution_osr*2;
cmd |= MS5611_START_TEMPERATURE_ADC_CONVERSION;
status = ms5611_conversion_and_read_adc( cmd, &adc_temperature);
if( status != ms5611_status_ok)
return status;
// Now read pressure
cmd = ms5611_resolution_osr*2;
cmd |= MS5611_START_PRESSURE_ADC_CONVERSION;
status = ms5611_conversion_and_read_adc( cmd, &adc_pressure);
if( status != ms5611_status_ok)
return status;
if (adc_temperature == 0 || adc_pressure == 0)
return ms5611_status_i2c_transfer_error;
// Difference between actual and reference temperature = D2 - Tref
dT = (int32_t)adc_temperature - ((int32_t)eeprom_coeff[MS5611_REFERENCE_TEMPERATURE_INDEX] <<8 );
// Actual temperature = 2000 + dT * TEMPSENS
TEMP = 2000 + ((int64_t)dT * (int64_t)eeprom_coeff[MS5611_TEMP_COEFF_OF_TEMPERATURE_INDEX] >> 23) ;
// Second order temperature compensation
if( TEMP < 2000 )
{
T2 = ( 3 * ( (int64_t)dT * (int64_t)dT ) ) >> 33;
OFF2 = 61 * ((int64_t)TEMP - 2000) * ((int64_t)TEMP - 2000) / 16 ;
SENS2 = 29 * ((int64_t)TEMP - 2000) * ((int64_t)TEMP - 2000) / 16 ;
if( TEMP < -1500 )
{
OFF2 += 17 * ((int64_t)TEMP + 1500) * ((int64_t)TEMP + 1500) ;
SENS2 += 9 * ((int64_t)TEMP + 1500) * ((int64_t)TEMP + 1500) ;
}
}
else
{
T2 = ( 5 * ( (int64_t)dT * (int64_t)dT ) ) >> 38;
OFF2 = 0 ;
SENS2 = 0 ;
}
// OFF = OFF_T1 + TCO * dT
OFF = ( (int64_t)(eeprom_coeff[MS5611_PRESSURE_OFFSET_INDEX]) << 16 ) + ( ( (int64_t)(eeprom_coeff[MS5611_TEMP_COEFF_OF_PRESSURE_OFFSET_INDEX]) * dT ) >> 7 ) ;
OFF -= OFF2 ;
// Sensitivity at actual temperature = SENS_T1 + TCS * dT
SENS = ( (int64_t)eeprom_coeff[MS5611_PRESSURE_SENSITIVITY_INDEX] << 15 ) + ( ((int64_t)eeprom_coeff[MS5611_TEMP_COEFF_OF_PRESSURE_SENSITIVITY_INDEX] * dT) >> 8 ) ;
SENS -= SENS2 ;
// Temperature compensated pressure = D1 * SENS - OFF
P = ( ( (adc_pressure * SENS) >> 21 ) - OFF ) >> 15 ;
*temperature = ( (float)TEMP - T2 ) / 100;
*pressure = (float)P / 100;
return status;
}
/**
* \brief CRC check
*
* \param[in] uint16_t *: List of EEPROM coefficients
* \param[in] uint8_t : crc to compare with
*
* \return bool : TRUE if CRC is OK, FALSE if KO
*/
bool ms5611_crc_check (uint16_t *n_prom, uint8_t crc)
{
uint8_t cnt, n_bit;
uint16_t n_rem;
uint16_t crc_read;
n_rem = 0x00;
crc_read = n_prom[7];
n_prom[7] = (0xFF00 & (n_prom[7]));
for (cnt = 0; cnt < 16; cnt++)
{
if (cnt%2==1) n_rem ^= (unsigned short) ((n_prom[cnt>>1]) & 0x00FF);
else n_rem ^= (unsigned short) (n_prom[cnt>>1]>>8);
for (n_bit = 8; n_bit > 0; n_bit--)
{
if (n_rem & (0x8000))
n_rem = (n_rem << 1) ^ 0x3000;
else
n_rem = (n_rem << 1);
}
}
n_rem = (0x000F & (n_rem >> 12));
n_prom[7] = crc_read;
n_rem ^= 0x00;
return ( n_rem == crc );
}
#ifdef __cplusplus
}
#endif