Correction de la lib car erreur de format dans les calculs
Revision 0:d558dda1e821, committed 2014-07-24
- Comitter:
- rkk
- Date:
- Thu Jul 24 04:19:39 2014 +0000
- Child:
- 1:a1f3bd291a0c
- Commit message:
- tested for use on MS5803-14BA
Changed in this revision
| MS5803.cpp | Show annotated file Show diff for this revision Revisions of this file |
| MS5803.h | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/MS5803.cpp Thu Jul 24 04:19:39 2014 +0000
@@ -0,0 +1,107 @@
+/*
+ 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.
+
+ * Barometer Sensor (Altimeter) MS5803-01BA of MEAS Switzerland (www.meas-spec.com).
+ * The driver uses I2C mode (sensor PS pin low).
+ * Other types of MEAS are compatible but not tested.
+ * Written by Raig Kaufer distribute freely!
+ */
+
+#include <stdlib.h>
+#include "MS5803.h"
+
+
+/*
+ * Sensor operating function according data sheet
+ */
+
+/* Send soft reset to the sensor */
+void MS5803::MS5803Reset(void) {
+ /* transmit out 1 byte reset command */
+ ms5803_tx_data[0] = ms5803_reset;
+ if ( i2c.write( device_address, ms5803_tx_data, 1 ) );
+ printf('send soft reset');
+ wait_ms(20);
+}
+
+/* read the sensor calibration data from rom */
+void MS5803::MS5803ReadProm(void) {
+ uint8_t i,j;
+ for (i=0; i<8; i++) {
+ j = i;
+ ms5803_tx_data[0] = ms5803_PROMread + (j<<1);
+ if ( i2c.write( device_address, ms5803_tx_data, 1 ) );
+ if ( i2c.read( device_address, ms5803_rx_data, 2 ) );
+ C[i] = ms5803_rx_data[1] + (ms5803_rx_data[0]<<8);
+ }
+}
+
+/* Start the sensor pressure conversion */
+void MS5803::MS5803ConvertD1(void) {
+ ms5803_tx_data[0] = ms5803_convD1;
+ if ( i2c.write( device_address, ms5803_tx_data, 1 ) );
+}
+
+/* Start the sensor temperature conversion */
+void MS5803:: MS5803ConvertD2(void) {
+ ms5803_tx_data[0] = ms5803_convD2;
+ if ( i2c.write( device_address, ms5803_tx_data, 1 ) );
+}
+
+/* Read the privious started conversion results */
+int32_t MS5803::MS5803ReadADC(void) {
+ int32_t adc;
+ wait_ms(150);
+ ms5803_tx_data[0] = ms5803_ADCread;
+ if ( i2c.write( device_address, ms5803_tx_data, 1 ) );
+ if ( i2c.read( device_address, ms5803_rx_data, 3 ) );
+ adc = ms5803_rx_data[2] + (ms5803_rx_data[1]<<8) + (ms5803_rx_data[0]<<16);
+ return (adc);
+}
+
+/* return the results */
+float MS5803::MS5803_Pressure (void) {
+ return P_MS5803;
+}
+float MS5803::MS5803_Temperature (void) {
+ return T_MS5803;
+}
+
+/* Sensor reading and calculation procedure */
+void MS5803::Barometer_MS5803(void) {
+ int32_t dT, temp;
+ int64_t OFF, SENS, press;
+
+ MS5803Reset(); // reset the sensor
+ MS5803ReadProm(); // read the calibration values
+ MS5803ConvertD1(); // start pressure conversion
+ D1 = MS5803ReadADC(); // read the pressure value
+ MS5803ConvertD2(); // start temperature conversion
+ D2 = MS5803ReadADC(); // read the temperature value
+
+ /* calculation according MS5803-01BA data sheet DA5803-01BA_006 */
+ dT = D2 - (C[5]* 256);
+ OFF = (int64_t)C[2] * (1<<16) + ((int64_t)dT * (int64_t)C[4]) / (1<<7);
+ SENS = (int64_t)C[1] * (1<<15) + ((int64_t)dT * (int64_t)C[3]) / (1<<8);
+
+ temp = 2000 + (dT * C[6]) / (1<<23);
+ T_MS5803 = (float) temp / 100.0f; // result of temperature in deg C in this var
+ press = (((int64_t)D1 * SENS) / (1<<21) - OFF) / (1<<15);
+ P_MS5803 = (float) press / 100.0f; // result of pressure in mBar in this var
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/MS5803.h Thu Jul 24 04:19:39 2014 +0000
@@ -0,0 +1,87 @@
+/*
+ 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.
+
+ * Miniature 14 bar Module MS5803-14BA of MEAS Switzerland (www.meas-spec.com).
+ * The driver uses I2C mode (sensor's Protocol Select (PS) pin pulled to high).
+ * Other types of MEAS are compatible but not tested (only MS5803-01BA was tested by Raig Kaufer).
+ * Written by Raig Kaufer distribute freely!
+ */
+#include "mbed.h"
+
+#ifndef MS5803_H
+#define MS5803_H
+
+#define MS5803_RX_DEPTH 3
+#define MS5803_TX_DEPTH 2
+
+#define ms5803_addrCL 0x77 //0b1110111 CSB Pin is low
+#define ms5803_addrCH 0x76 //0b1110110 CSB Pin is high
+
+#define ms5803_base_addr ms5803_addrCH // choose your connection here
+
+#define ms5803_reset 0x1E // Sensor Reset
+
+#define ms5803_convD1_256 0x40 // Convert D1 OSR 256
+#define ms5803_convD1_512 0x42 // Convert D1 OSR 512
+#define ms5803_convD1_1024 0x44 // Convert D1 OSR 1024
+#define ms5803_convD1_2048 0x46 // Convert D1 OSR 2048
+#define ms5803_convD1_4096 0x48 // Convert D1 OSR 2048
+
+#define ms5803_convD1 ms5803_convD1_512 // choose your sampling rate here
+
+#define ms5803_convD2_256 0x50 // Convert D2 OSR 256
+#define ms5803_convD2_512 0x52 // Convert D2 OSR 512
+#define ms5803_convD2_1024 0x54 // Convert D2 OSR 1024
+#define ms5803_convD2_2048 0x56 // Convert D2 OSR 2048
+#define ms5803_convD2_4096 0x58 // Convert D2 OSR 2048
+
+#define ms5803_convD2 ms5803_convD2_512 // choose your sampling rate here
+
+#define ms5803_ADCread 0x00 // read ADC command
+#define ms5803_PROMread 0xA0 // read PROM command base address
+
+class MS5803 : public Base {
+private:
+ int D1, D2, Temp, C[8];
+ float T_MS5803, P_MS5803;
+ /* Data buffers */
+ char ms5803_rx_data[MS5803_RX_DEPTH];
+ char ms5803_tx_data[MS5803_TX_DEPTH];
+
+public:
+ MS5803 (PinName sda, PinName scl,
+ char ms5803_addr = ms5803_base_addr )
+ : i2c( sda, scl ), device_address( ms5803_addr << 1 ) {
+ }
+ void MS5803Reset(void);
+ void MS5803ReadProm(void);
+ void MS5803ConvertD1(void);
+ void MS5803ConvertD2(void);
+ int32_t MS5803ReadADC(void);
+ float MS5803_Pressure (void);
+ float MS5803_Temperature (void);
+ void Barometer_MS5803(void);
+
+
+private:
+ I2C i2c;
+ char device_address;
+
+};
+#endif