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-03-07 00:55:15 -04:00
|
|
|
#define PRESS_FILTER_SIZE 2
|
2011-11-27 00:42:52 -04:00
|
|
|
|
2011-11-27 01:34:26 -04:00
|
|
|
#include "AP_Baro.h"
|
2012-03-17 13:06:02 -03:00
|
|
|
#include <AverageFilter.h>
|
2011-11-27 00:42:52 -04:00
|
|
|
|
2011-11-30 00:31:40 -04:00
|
|
|
class AP_Baro_BMP085 : public AP_Baro
|
2011-11-27 00:42:52 -04:00
|
|
|
{
|
|
|
|
public:
|
2011-12-09 02:27:30 -04:00
|
|
|
AP_Baro_BMP085(bool apm2_hardware):
|
2012-03-17 13:06:02 -03:00
|
|
|
_apm2_hardware(apm2_hardware) {}; // Constructor
|
2011-11-30 00:31:40 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* AP_Baro public interface: */
|
2011-12-28 05:32:21 -04:00
|
|
|
bool init(AP_PeriodicProcess * scheduler);
|
2011-11-30 00:31:40 -04:00
|
|
|
uint8_t read();
|
|
|
|
int32_t get_pressure();
|
|
|
|
int16_t get_temperature();
|
|
|
|
|
|
|
|
int32_t get_raw_pressure();
|
|
|
|
int32_t get_raw_temp();
|
|
|
|
|
|
|
|
private:
|
2011-11-27 00:42:52 -04:00
|
|
|
int32_t RawPress;
|
|
|
|
int32_t RawTemp;
|
|
|
|
int16_t Temp;
|
2012-01-14 04:50:45 -04:00
|
|
|
uint32_t Press;
|
2011-11-25 19:11:14 -04:00
|
|
|
bool _apm2_hardware;
|
2011-11-27 00:42:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
// State machine
|
|
|
|
uint8_t BMP085_State;
|
|
|
|
// Internal calibration registers
|
|
|
|
int16_t ac1, ac2, ac3, b1, b2, mb, mc, md;
|
|
|
|
uint16_t ac4, ac5, ac6;
|
|
|
|
|
2012-03-24 11:21:11 -03:00
|
|
|
AverageFilterInt32_Size4 _temp_filter;
|
2011-11-27 00:42:52 -04:00
|
|
|
|
2012-01-04 01:35:16 -04:00
|
|
|
uint32_t _retry_time;
|
2011-11-27 00:42:52 -04:00
|
|
|
|
|
|
|
void Command_ReadPress();
|
|
|
|
void Command_ReadTemp();
|
|
|
|
void ReadPress();
|
|
|
|
void ReadTemp();
|
|
|
|
void Calculate();
|
|
|
|
};
|
|
|
|
|
2011-11-27 01:34:26 -04:00
|
|
|
#endif // __AP_BARO_BMP085_H__
|