2010-05-28 11:38:51 -03:00
|
|
|
#ifndef APM_BMP085_h
|
|
|
|
#define APM_BMP085_h
|
|
|
|
|
2011-11-25 15:33:05 -04:00
|
|
|
#define TEMP_FILTER_SIZE 4
|
|
|
|
#define PRESS_FILTER_SIZE 8
|
2010-05-28 11:38:51 -03:00
|
|
|
|
2011-10-26 15:59:40 -03:00
|
|
|
#include "APM_BMP085_hil.h"
|
2011-10-13 11:22:03 -03:00
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
class APM_BMP085_Class
|
|
|
|
{
|
2011-09-04 14:47:50 -03:00
|
|
|
public:
|
|
|
|
APM_BMP085_Class():
|
|
|
|
_temp_index(0),
|
|
|
|
_press_index(0){}; // Constructor
|
|
|
|
int32_t RawPress;
|
2011-11-01 13:22:21 -03:00
|
|
|
int32_t _offset_press;
|
2011-09-04 14:47:50 -03:00
|
|
|
int32_t RawTemp;
|
|
|
|
int16_t Temp;
|
|
|
|
int32_t Press;
|
|
|
|
//int Altitude;
|
|
|
|
uint8_t oss;
|
2011-11-25 19:11:14 -04:00
|
|
|
bool _apm2_hardware;
|
2011-09-04 14:47:50 -03:00
|
|
|
//int32_t Press0; // Pressure at sea level
|
|
|
|
|
2011-11-25 19:11:14 -04:00
|
|
|
bool Init(int initialiseWireLib = 1, bool apm2_hardware=false);
|
2011-09-04 14:47:50 -03:00
|
|
|
uint8_t Read();
|
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
private:
|
|
|
|
// State machine
|
|
|
|
uint8_t BMP085_State;
|
|
|
|
// Internal calibration registers
|
|
|
|
int16_t ac1, ac2, ac3, b1, b2, mb, mc, md;
|
2011-06-12 20:57:36 -03:00
|
|
|
uint16_t ac4, ac5, ac6;
|
2011-09-04 14:47:50 -03:00
|
|
|
|
|
|
|
int _temp_filter[TEMP_FILTER_SIZE];
|
|
|
|
int _press_filter[PRESS_FILTER_SIZE];
|
|
|
|
long _offset_temp;
|
|
|
|
|
|
|
|
uint8_t _temp_index;
|
|
|
|
uint8_t _press_index;
|
|
|
|
|
2010-05-28 11:38:51 -03:00
|
|
|
void Command_ReadPress();
|
|
|
|
void Command_ReadTemp();
|
|
|
|
void ReadPress();
|
|
|
|
void ReadTemp();
|
|
|
|
void Calculate();
|
|
|
|
};
|
|
|
|
|
2010-11-19 01:42:47 -04:00
|
|
|
#endif
|