2010-05-28 11:38:51 -03:00
|
|
|
|
/*
|
|
|
|
|
APM_BMP085.cpp - Arduino Library for BMP085 absolute pressure sensor
|
2011-05-04 16:12:27 -03:00
|
|
|
|
Code by Jordi Mu<EFBFBD>oz and Jose Julio. DIYDrones.com
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
Sensor is conected to I2C port
|
|
|
|
|
Sensor End of Conversion (EOC) pin is PC7 (30)
|
2011-06-12 20:57:36 -03:00
|
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
|
Variables:
|
|
|
|
|
RawTemp : Raw temperature data
|
|
|
|
|
RawPress : Raw pressure data
|
|
|
|
|
|
2011-05-04 16:12:27 -03:00
|
|
|
|
Temp : Calculated temperature (in 0.1<EFBFBD>C units)
|
2010-05-28 11:38:51 -03:00
|
|
|
|
Press : Calculated pressure (in Pa units)
|
2011-06-12 20:57:36 -03:00
|
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
|
Methods:
|
|
|
|
|
Init() : Initialization of I2C and read sensor calibration data
|
|
|
|
|
Read() : Read sensor data and calculate Temperature and Pressure
|
2011-06-12 20:57:36 -03:00
|
|
|
|
This function is optimized so the main host don<EFBFBD>t need to wait
|
2010-05-28 11:38:51 -03:00
|
|
|
|
You can call this function in your main loop
|
|
|
|
|
It returns a 1 if there are new data.
|
2011-06-12 20:57:36 -03:00
|
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
|
Internal functions:
|
|
|
|
|
Command_ReadTemp(): Send commando to read temperature
|
|
|
|
|
Command_ReadPress(): Send commando to read Pressure
|
|
|
|
|
ReadTemp() : Read temp register
|
|
|
|
|
ReadPress() : Read press register
|
|
|
|
|
Calculate() : Calculate Temperature and Pressure in real units
|
|
|
|
|
|
2011-06-12 20:57:36 -03:00
|
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
|
*/
|
2011-11-12 22:45:23 -04:00
|
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
|
extern "C" {
|
|
|
|
|
// AVR LibC Includes
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
#include <avr/interrupt.h>
|
|
|
|
|
#include "WConstants.h"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include <Wire.h>
|
|
|
|
|
#include "APM_BMP085.h"
|
|
|
|
|
|
|
|
|
|
#define BMP085_ADDRESS 0x77 //(0xEE >> 1)
|
|
|
|
|
#define BMP085_EOC 30 // End of conversion pin PC7
|
|
|
|
|
|
|
|
|
|
// Constructors ////////////////////////////////////////////////////////////////
|
2011-09-04 14:47:50 -03:00
|
|
|
|
//APM_BMP085_Class::APM_BMP085_Class()
|
|
|
|
|
//{
|
|
|
|
|
//}
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
2011-11-12 22:45:23 -04:00
|
|
|
|
// the purple hardware needs to check the state of the
|
|
|
|
|
// chip using a direct IO port
|
|
|
|
|
// On Purple prerelease hw, the data ready port is hooked up to PE7, which
|
|
|
|
|
// is not available to the arduino digitalRead function.
|
|
|
|
|
#define BMP_DATA_READY() (_purple_hardware?(PINE&0x80):digitalRead(BMP085_EOC))
|
|
|
|
|
|
|
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
|
// Public Methods //////////////////////////////////////////////////////////////
|
2011-11-12 22:45:23 -04:00
|
|
|
|
bool APM_BMP085_Class::Init(int initialiseWireLib, bool purple_hardware)
|
2010-05-28 11:38:51 -03:00
|
|
|
|
{
|
2011-06-12 20:57:36 -03:00
|
|
|
|
byte buff[22];
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
2011-11-12 22:45:23 -04:00
|
|
|
|
_purple_hardware = purple_hardware;
|
|
|
|
|
|
2011-06-12 20:57:36 -03:00
|
|
|
|
pinMode(BMP085_EOC, INPUT); // End Of Conversion (PC7) input
|
|
|
|
|
|
|
|
|
|
if( initialiseWireLib != 0 )
|
|
|
|
|
Wire.begin();
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
2011-06-12 20:57:36 -03:00
|
|
|
|
oss = 3; // Over Sampling setting 3 = High resolution
|
|
|
|
|
BMP085_State = 0; // Initial state
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
|
|
|
|
// We read the calibration data registers
|
2011-06-12 20:57:36 -03:00
|
|
|
|
Wire.beginTransmission(BMP085_ADDRESS);
|
|
|
|
|
Wire.send(0xAA);
|
2011-11-12 22:45:23 -04:00
|
|
|
|
if (Wire.endTransmission() != 0) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-06-12 20:57:36 -03:00
|
|
|
|
|
|
|
|
|
Wire.requestFrom(BMP085_ADDRESS, 22);
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
|
|
|
|
//Wire.endTransmission();
|
2011-06-12 20:57:36 -03:00
|
|
|
|
while(Wire.available()){
|
|
|
|
|
buff[i] = Wire.receive(); // receive one byte
|
|
|
|
|
i++;
|
|
|
|
|
}
|
2011-11-12 22:45:23 -04:00
|
|
|
|
if (i != 22) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-06-12 20:57:36 -03:00
|
|
|
|
|
|
|
|
|
ac1 = ((int)buff[0] << 8) | buff[1];
|
|
|
|
|
ac2 = ((int)buff[2] << 8) | buff[3];
|
|
|
|
|
ac3 = ((int)buff[4] << 8) | buff[5];
|
|
|
|
|
ac4 = ((int)buff[6] << 8) | buff[7];
|
|
|
|
|
ac5 = ((int)buff[8] << 8) | buff[9];
|
|
|
|
|
ac6 = ((int)buff[10] << 8) | buff[11];
|
|
|
|
|
b1 = ((int)buff[12] << 8) | buff[13];
|
|
|
|
|
b2 = ((int)buff[14] << 8) | buff[15];
|
|
|
|
|
mb = ((int)buff[16] << 8) | buff[17];
|
|
|
|
|
mc = ((int)buff[18] << 8) | buff[19];
|
|
|
|
|
md = ((int)buff[20] << 8) | buff[21];
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
|
|
|
|
//Send a command to read Temp
|
2011-06-12 20:57:36 -03:00
|
|
|
|
Command_ReadTemp();
|
|
|
|
|
BMP085_State = 1;
|
2011-11-12 22:45:23 -04:00
|
|
|
|
return true;
|
2010-05-28 11:38:51 -03:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-01 13:22:21 -03:00
|
|
|
|
/*
|
2010-05-28 11:38:51 -03:00
|
|
|
|
// Read the sensor. This is a state machine
|
|
|
|
|
// We read one time Temperature (state=1) and then 4 times Pressure (states 2-5)
|
|
|
|
|
uint8_t APM_BMP085_Class::Read()
|
|
|
|
|
{
|
2011-06-12 20:57:36 -03:00
|
|
|
|
uint8_t result = 0;
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
2011-06-12 20:57:36 -03:00
|
|
|
|
if (BMP085_State == 1){
|
2011-11-12 22:45:23 -04:00
|
|
|
|
if (BMP_DATA_READY()) {
|
2011-06-12 20:57:36 -03:00
|
|
|
|
ReadTemp(); // On state 1 we read temp
|
2010-05-28 11:38:51 -03:00
|
|
|
|
BMP085_State++;
|
|
|
|
|
Command_ReadPress();
|
|
|
|
|
}
|
2011-06-12 20:57:36 -03:00
|
|
|
|
}else{
|
2011-06-14 12:46:38 -03:00
|
|
|
|
if (BMP085_State == 5){
|
2011-11-12 22:45:23 -04:00
|
|
|
|
if (BMP_DATA_READY()){
|
2010-05-28 11:38:51 -03:00
|
|
|
|
ReadPress();
|
|
|
|
|
Calculate();
|
2011-06-12 20:57:36 -03:00
|
|
|
|
|
|
|
|
|
BMP085_State = 1; // Start again from state = 1
|
|
|
|
|
Command_ReadTemp(); // Read Temp
|
|
|
|
|
result = 1; // New pressure reading
|
2010-05-28 11:38:51 -03:00
|
|
|
|
}
|
2011-06-12 20:57:36 -03:00
|
|
|
|
}else{
|
2011-11-12 22:45:23 -04:00
|
|
|
|
if (BMP_DATA_READY()){
|
2010-05-28 11:38:51 -03:00
|
|
|
|
ReadPress();
|
|
|
|
|
Calculate();
|
|
|
|
|
BMP085_State++;
|
|
|
|
|
Command_ReadPress();
|
2011-06-12 20:57:36 -03:00
|
|
|
|
result = 1; // New pressure reading
|
2010-05-28 11:38:51 -03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-06-12 20:57:36 -03:00
|
|
|
|
return(result);
|
2010-05-28 11:38:51 -03:00
|
|
|
|
}
|
2011-11-01 13:22:21 -03:00
|
|
|
|
*/
|
|
|
|
|
// Read the sensor. This is a state machine
|
|
|
|
|
// We read one time Temperature (state=1) and then 4 times Pressure (states 2-5)
|
|
|
|
|
uint8_t APM_BMP085_Class::Read()
|
|
|
|
|
{
|
|
|
|
|
uint8_t result = 0;
|
|
|
|
|
|
|
|
|
|
if (BMP085_State == 1){
|
|
|
|
|
if (digitalRead(BMP085_EOC)){
|
|
|
|
|
BMP085_State = 2;
|
|
|
|
|
ReadTemp(); // On state 1 we read temp
|
|
|
|
|
Command_ReadPress();
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
if (digitalRead(BMP085_EOC)){
|
|
|
|
|
BMP085_State = 1; // Start again from state = 1
|
|
|
|
|
ReadPress();
|
|
|
|
|
Calculate();
|
|
|
|
|
Command_ReadTemp(); // Read Temp
|
|
|
|
|
result = 1; // New pressure reading
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return(result);
|
|
|
|
|
}
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Send command to Read Pressure
|
|
|
|
|
void APM_BMP085_Class::Command_ReadPress()
|
|
|
|
|
{
|
2011-06-12 20:57:36 -03:00
|
|
|
|
Wire.beginTransmission(BMP085_ADDRESS);
|
|
|
|
|
Wire.send(0xF4);
|
|
|
|
|
Wire.send(0x34+(oss << 6)); // write_register(0xF4, 0x34+(oversampling_setting << 6));
|
|
|
|
|
Wire.endTransmission();
|
2010-05-28 11:38:51 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Read Raw Pressure values
|
|
|
|
|
void APM_BMP085_Class::ReadPress()
|
|
|
|
|
{
|
2011-06-12 20:57:36 -03:00
|
|
|
|
byte msb;
|
|
|
|
|
byte lsb;
|
|
|
|
|
byte xlsb;
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
2011-06-12 20:57:36 -03:00
|
|
|
|
Wire.beginTransmission(BMP085_ADDRESS);
|
|
|
|
|
Wire.send(0xF6);
|
|
|
|
|
Wire.endTransmission();
|
|
|
|
|
|
|
|
|
|
Wire.requestFrom(BMP085_ADDRESS, 3); // read a byte
|
2010-05-28 11:38:51 -03:00
|
|
|
|
|
2011-06-12 20:57:36 -03:00
|
|
|
|
while(!Wire.available()) {
|
2010-05-28 11:38:51 -03:00
|
|
|
|
// waiting
|
2011-06-12 20:57:36 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
msb = Wire.receive();
|
|
|
|
|
|
|
|
|
|
while(!Wire.available()) {
|
2010-05-28 11:38:51 -03:00
|
|
|
|
// waiting
|
2011-06-12 20:57:36 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lsb = Wire.receive();
|
|
|
|
|
|
|
|
|
|
while(!Wire.available()) {
|
2010-05-28 11:38:51 -03:00
|
|
|
|
// waiting
|
2011-06-12 20:57:36 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xlsb = Wire.receive();
|
|
|
|
|
RawPress = (((long)msb << 16) | ((long)lsb << 8) | ((long)xlsb)) >> (8 - oss);
|
2011-09-04 14:47:50 -03:00
|
|
|
|
|
|
|
|
|
if(_offset_press == 0){
|
|
|
|
|
_offset_press = RawPress;
|
|
|
|
|
RawPress = 0;
|
|
|
|
|
}else{
|
|
|
|
|
RawPress -= _offset_press;
|
|
|
|
|
}
|
|
|
|
|
// filter
|
|
|
|
|
_press_filter[_press_index++] = RawPress;
|
|
|
|
|
|
|
|
|
|
if(_press_index >= PRESS_FILTER_SIZE)
|
|
|
|
|
_press_index = 0;
|
|
|
|
|
|
|
|
|
|
RawPress = 0;
|
|
|
|
|
// sum our filter
|
|
|
|
|
for(uint8_t i = 0; i < PRESS_FILTER_SIZE; i++){
|
|
|
|
|
RawPress += _press_filter[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// grab result
|
2011-09-05 01:32:17 -03:00
|
|
|
|
RawPress /= PRESS_FILTER_SIZE;
|
|
|
|
|
//RawPress >>= 3;
|
2011-09-04 14:47:50 -03:00
|
|
|
|
RawPress += _offset_press;
|
2010-05-28 11:38:51 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Send Command to Read Temperature
|
|
|
|
|
void APM_BMP085_Class::Command_ReadTemp()
|
|
|
|
|
{
|
2011-06-18 02:08:48 -03:00
|
|
|
|
Wire.beginTransmission(BMP085_ADDRESS);
|
|
|
|
|
Wire.send(0xF4);
|
|
|
|
|
Wire.send(0x2E);
|
|
|
|
|
Wire.endTransmission();
|
2010-05-28 11:38:51 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Read Raw Temperature values
|
|
|
|
|
void APM_BMP085_Class::ReadTemp()
|
2011-06-12 20:57:36 -03:00
|
|
|
|
{
|
|
|
|
|
byte tmp;
|
|
|
|
|
Wire.beginTransmission(BMP085_ADDRESS);
|
|
|
|
|
Wire.send(0xF6);
|
|
|
|
|
Wire.endTransmission();
|
|
|
|
|
|
|
|
|
|
Wire.beginTransmission(BMP085_ADDRESS);
|
2011-06-18 02:08:48 -03:00
|
|
|
|
Wire.requestFrom(BMP085_ADDRESS,2);
|
|
|
|
|
|
2011-06-12 20:57:36 -03:00
|
|
|
|
while(!Wire.available()); // wait
|
2011-06-18 02:08:48 -03:00
|
|
|
|
RawTemp = Wire.receive();
|
|
|
|
|
|
2011-06-12 20:57:36 -03:00
|
|
|
|
while(!Wire.available()); // wait
|
2011-06-18 02:08:48 -03:00
|
|
|
|
tmp = Wire.receive();
|
|
|
|
|
|
|
|
|
|
RawTemp = RawTemp << 8 | tmp;
|
2011-09-04 14:47:50 -03:00
|
|
|
|
|
|
|
|
|
if(_offset_temp == 0){
|
|
|
|
|
_offset_temp = RawTemp;
|
|
|
|
|
RawTemp = 0;
|
|
|
|
|
}else{
|
|
|
|
|
RawTemp -= _offset_temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// filter
|
|
|
|
|
_temp_filter[_temp_index++] = RawTemp;
|
|
|
|
|
|
|
|
|
|
if(_temp_index >= TEMP_FILTER_SIZE)
|
|
|
|
|
_temp_index = 0;
|
|
|
|
|
|
|
|
|
|
RawTemp = 0;
|
|
|
|
|
// sum our filter
|
|
|
|
|
for(uint8_t i = 0; i < TEMP_FILTER_SIZE; i++){
|
|
|
|
|
RawTemp += _temp_filter[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// grab result
|
2011-09-05 01:32:17 -03:00
|
|
|
|
RawTemp /= TEMP_FILTER_SIZE;
|
|
|
|
|
//RawTemp >>= 4;
|
2011-09-04 14:47:50 -03:00
|
|
|
|
RawTemp += _offset_temp;
|
2010-05-28 11:38:51 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Calculate Temperature and Pressure in real units.
|
|
|
|
|
void APM_BMP085_Class::Calculate()
|
|
|
|
|
{
|
2011-06-18 02:08:48 -03:00
|
|
|
|
long x1, x2, x3, b3, b5, b6, p;
|
|
|
|
|
unsigned long b4, b7;
|
|
|
|
|
int32_t tmp;
|
|
|
|
|
|
|
|
|
|
// See Datasheet page 13 for this formulas
|
|
|
|
|
// Based also on Jee Labs BMP085 example code. Thanks for share.
|
|
|
|
|
// Temperature calculations
|
|
|
|
|
x1 = ((long)RawTemp - ac6) * ac5 >> 15;
|
|
|
|
|
x2 = ((long) mc << 11) / (x1 + md);
|
|
|
|
|
b5 = x1 + x2;
|
|
|
|
|
Temp = (b5 + 8) >> 4;
|
|
|
|
|
|
|
|
|
|
// Pressure calculations
|
|
|
|
|
b6 = b5 - 4000;
|
|
|
|
|
x1 = (b2 * (b6 * b6 >> 12)) >> 11;
|
|
|
|
|
x2 = ac2 * b6 >> 11;
|
|
|
|
|
x3 = x1 + x2;
|
|
|
|
|
//b3 = (((int32_t) ac1 * 4 + x3)<<oss + 2) >> 2; // BAD
|
|
|
|
|
//b3 = ((int32_t) ac1 * 4 + x3 + 2) >> 2; //OK for oss=0
|
|
|
|
|
tmp = ac1;
|
|
|
|
|
tmp = (tmp*4 + x3)<<oss;
|
|
|
|
|
b3 = (tmp+2)/4;
|
|
|
|
|
x1 = ac3 * b6 >> 13;
|
|
|
|
|
x2 = (b1 * (b6 * b6 >> 12)) >> 16;
|
|
|
|
|
x3 = ((x1 + x2) + 2) >> 2;
|
|
|
|
|
b4 = (ac4 * (uint32_t) (x3 + 32768)) >> 15;
|
|
|
|
|
b7 = ((uint32_t) RawPress - b3) * (50000 >> oss);
|
|
|
|
|
p = b7 < 0x80000000 ? (b7 * 2) / b4 : (b7 / b4) * 2;
|
|
|
|
|
|
|
|
|
|
x1 = (p >> 8) * (p >> 8);
|
|
|
|
|
x1 = (x1 * 3038) >> 16;
|
|
|
|
|
x2 = (-7357 * p) >> 16;
|
|
|
|
|
Press = p + ((x1 + x2 + 3791) >> 4);
|
2011-11-12 22:45:23 -04:00
|
|
|
|
}
|