mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
3d80d7e580
git-svn-id: https://arducopter.googlecode.com/svn/trunk@884 f9c3cf11-9bcb-44bc-f272-b75c42450872
50 lines
973 B
C++
50 lines
973 B
C++
#ifndef APM_BMP085_h
|
|
#define APM_BMP085_h
|
|
|
|
|
|
class APM_BMP085_Class
|
|
{
|
|
private:
|
|
// State machine
|
|
uint8_t BMP085_State;
|
|
// Internal calibration registers
|
|
int16_t ac1, ac2, ac3, b1, b2, mb, mc, md;
|
|
uint16_t ac4, ac5, ac6;
|
|
void Command_ReadPress();
|
|
void Command_ReadTemp();
|
|
void ReadPress();
|
|
void ReadTemp();
|
|
void Calculate();
|
|
public:
|
|
int32_t RawPress;
|
|
int32_t RawTemp;
|
|
int16_t Temp;
|
|
int32_t Press;
|
|
//int Altitude;
|
|
uint8_t oss;
|
|
//int32_t Press0; // Pressure at sea level
|
|
|
|
APM_BMP085_Class(); // Constructor
|
|
void Init(int initialiseWireLib = 1);
|
|
uint8_t Read();
|
|
};
|
|
|
|
class APM_BMP085_HIL_Class
|
|
{
|
|
private:
|
|
uint8_t BMP085_State;
|
|
public:
|
|
int32_t RawPress;
|
|
int32_t RawTemp;
|
|
int16_t Temp;
|
|
int32_t Press;
|
|
//int Altitude;
|
|
uint8_t oss;
|
|
APM_BMP085_HIL_Class(); // Constructor
|
|
void Init(int initialiseWireLib = 1);
|
|
uint8_t Read();
|
|
void setHIL(float Temp, float Press);
|
|
};
|
|
|
|
#endif
|