2011-12-28 05:32:21 -04:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-11-27 01:34:26 -04:00
|
|
|
#ifndef __AP_BARO_BMP085_H__
|
|
|
|
#define __AP_BARO_BMP085_H__
|
2011-11-27 00:42:52 -04:00
|
|
|
|
2012-12-14 21:53:07 -04:00
|
|
|
#include "AP_Baro.h"
|
2011-11-27 00:42:52 -04:00
|
|
|
|
2015-01-05 07:00:32 -04:00
|
|
|
class AP_Baro_BMP085 : public AP_Baro_Backend
|
2011-11-27 00:42:52 -04:00
|
|
|
{
|
2012-08-17 03:09:24 -03:00
|
|
|
public:
|
2015-01-05 07:00:32 -04:00
|
|
|
// Constructor
|
|
|
|
AP_Baro_BMP085(AP_Baro &baro);
|
2011-11-30 00:31:40 -04:00
|
|
|
|
|
|
|
/* AP_Baro public interface: */
|
2015-01-05 07:00:32 -04:00
|
|
|
void update();
|
|
|
|
void accumulate(void);
|
2011-11-30 00:31:40 -04:00
|
|
|
|
2012-08-17 03:09:24 -03:00
|
|
|
private:
|
2015-01-05 07:00:32 -04:00
|
|
|
uint8_t _instance;
|
2013-01-09 08:05:17 -04:00
|
|
|
float _temp_sum;
|
|
|
|
float _press_sum;
|
|
|
|
uint8_t _count;
|
2015-01-05 07:00:32 -04:00
|
|
|
|
2013-09-23 00:12:09 -03:00
|
|
|
// Flymaple has no EOC pin, so use times instead
|
|
|
|
uint32_t _last_press_read_command_time;
|
|
|
|
uint32_t _last_temp_read_command_time;
|
2013-01-09 08:05:17 -04:00
|
|
|
|
2011-11-27 00:42:52 -04:00
|
|
|
// State machine
|
2012-08-17 03:09:24 -03:00
|
|
|
uint8_t BMP085_State;
|
2015-01-05 07:00:32 -04:00
|
|
|
|
2012-08-17 03:09:24 -03:00
|
|
|
// Internal calibration registers
|
|
|
|
int16_t ac1, ac2, ac3, b1, b2, mb, mc, md;
|
|
|
|
uint16_t ac4, ac5, ac6;
|
2011-11-27 00:42:52 -04:00
|
|
|
|
2012-08-17 03:09:24 -03:00
|
|
|
uint32_t _retry_time;
|
2015-01-05 07:00:32 -04:00
|
|
|
int32_t RawPress;
|
|
|
|
int32_t RawTemp;
|
2011-11-27 00:42:52 -04:00
|
|
|
|
2012-08-17 03:09:24 -03:00
|
|
|
void Command_ReadPress();
|
|
|
|
void Command_ReadTemp();
|
2015-01-05 07:00:32 -04:00
|
|
|
bool ReadPress();
|
2012-08-17 03:09:24 -03:00
|
|
|
void ReadTemp();
|
|
|
|
void Calculate();
|
2011-11-27 00:42:52 -04:00
|
|
|
};
|
|
|
|
|
2011-11-27 01:34:26 -04:00
|
|
|
#endif // __AP_BARO_BMP085_H__
|