mirror of https://github.com/ArduPilot/ardupilot
AP_Baro_BMP085(+_HIL): Rename classes from APM_BMP085 to AP_Baro_BMP085.
This commit is contained in:
parent
7032c32b42
commit
f445ec1242
|
@ -42,16 +42,11 @@ extern "C" {
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
#include "APM_BMP085.h"
|
#include "AP_Baro_BMP085.h"
|
||||||
|
|
||||||
#define BMP085_ADDRESS 0x77 //(0xEE >> 1)
|
#define BMP085_ADDRESS 0x77 //(0xEE >> 1)
|
||||||
#define BMP085_EOC 30 // End of conversion pin PC7
|
#define BMP085_EOC 30 // End of conversion pin PC7
|
||||||
|
|
||||||
// Constructors ////////////////////////////////////////////////////////////////
|
|
||||||
//APM_BMP085_Class::APM_BMP085_Class()
|
|
||||||
//{
|
|
||||||
//}
|
|
||||||
|
|
||||||
// the apm2 hardware needs to check the state of the
|
// the apm2 hardware needs to check the state of the
|
||||||
// chip using a direct IO port
|
// chip using a direct IO port
|
||||||
// On APM2 prerelease hw, the data ready port is hooked up to PE7, which
|
// On APM2 prerelease hw, the data ready port is hooked up to PE7, which
|
||||||
|
@ -60,7 +55,7 @@ extern "C" {
|
||||||
|
|
||||||
|
|
||||||
// Public Methods //////////////////////////////////////////////////////////////
|
// Public Methods //////////////////////////////////////////////////////////////
|
||||||
bool APM_BMP085_Class::Init(int initialiseWireLib, bool apm2_hardware)
|
bool AP_Baro_BMP085::Init(int initialiseWireLib, bool apm2_hardware)
|
||||||
{
|
{
|
||||||
byte buff[22];
|
byte buff[22];
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
@ -114,7 +109,7 @@ bool APM_BMP085_Class::Init(int initialiseWireLib, bool apm2_hardware)
|
||||||
/*
|
/*
|
||||||
// Read the sensor. This is a state machine
|
// Read the sensor. This is a state machine
|
||||||
// We read one time Temperature (state=1) and then 4 times Pressure (states 2-5)
|
// We read one time Temperature (state=1) and then 4 times Pressure (states 2-5)
|
||||||
uint8_t APM_BMP085_Class::Read()
|
uint8_t AP_Baro_BMP085::Read()
|
||||||
{
|
{
|
||||||
uint8_t result = 0;
|
uint8_t result = 0;
|
||||||
|
|
||||||
|
@ -149,7 +144,7 @@ uint8_t APM_BMP085_Class::Read()
|
||||||
*/
|
*/
|
||||||
// Read the sensor. This is a state machine
|
// Read the sensor. This is a state machine
|
||||||
// We read one time Temperature (state=1) and then 4 times Pressure (states 2-5)
|
// We read one time Temperature (state=1) and then 4 times Pressure (states 2-5)
|
||||||
uint8_t APM_BMP085_Class::Read()
|
uint8_t AP_Baro_BMP085::Read()
|
||||||
{
|
{
|
||||||
uint8_t result = 0;
|
uint8_t result = 0;
|
||||||
|
|
||||||
|
@ -173,7 +168,7 @@ uint8_t APM_BMP085_Class::Read()
|
||||||
|
|
||||||
|
|
||||||
// Send command to Read Pressure
|
// Send command to Read Pressure
|
||||||
void APM_BMP085_Class::Command_ReadPress()
|
void AP_Baro_BMP085::Command_ReadPress()
|
||||||
{
|
{
|
||||||
Wire.beginTransmission(BMP085_ADDRESS);
|
Wire.beginTransmission(BMP085_ADDRESS);
|
||||||
Wire.send(0xF4);
|
Wire.send(0xF4);
|
||||||
|
@ -182,7 +177,7 @@ void APM_BMP085_Class::Command_ReadPress()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read Raw Pressure values
|
// Read Raw Pressure values
|
||||||
void APM_BMP085_Class::ReadPress()
|
void AP_Baro_BMP085::ReadPress()
|
||||||
{
|
{
|
||||||
byte msb;
|
byte msb;
|
||||||
byte lsb;
|
byte lsb;
|
||||||
|
@ -238,7 +233,7 @@ void APM_BMP085_Class::ReadPress()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send Command to Read Temperature
|
// Send Command to Read Temperature
|
||||||
void APM_BMP085_Class::Command_ReadTemp()
|
void AP_Baro_BMP085::Command_ReadTemp()
|
||||||
{
|
{
|
||||||
Wire.beginTransmission(BMP085_ADDRESS);
|
Wire.beginTransmission(BMP085_ADDRESS);
|
||||||
Wire.send(0xF4);
|
Wire.send(0xF4);
|
||||||
|
@ -247,7 +242,7 @@ void APM_BMP085_Class::Command_ReadTemp()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read Raw Temperature values
|
// Read Raw Temperature values
|
||||||
void APM_BMP085_Class::ReadTemp()
|
void AP_Baro_BMP085::ReadTemp()
|
||||||
{
|
{
|
||||||
byte tmp;
|
byte tmp;
|
||||||
Wire.beginTransmission(BMP085_ADDRESS);
|
Wire.beginTransmission(BMP085_ADDRESS);
|
||||||
|
@ -291,7 +286,7 @@ void APM_BMP085_Class::ReadTemp()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate Temperature and Pressure in real units.
|
// Calculate Temperature and Pressure in real units.
|
||||||
void APM_BMP085_Class::Calculate()
|
void AP_Baro_BMP085::Calculate()
|
||||||
{
|
{
|
||||||
long x1, x2, x3, b3, b5, b6, p;
|
long x1, x2, x3, b3, b5, b6, p;
|
||||||
unsigned long b4, b7;
|
unsigned long b4, b7;
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
#ifndef APM_BMP085_h
|
#ifndef __AP_BARO_BMP085_H__
|
||||||
#define APM_BMP085_h
|
#define __AP_BARO_BMP085_H__
|
||||||
|
|
||||||
#define TEMP_FILTER_SIZE 4
|
#define TEMP_FILTER_SIZE 4
|
||||||
#define PRESS_FILTER_SIZE 8
|
#define PRESS_FILTER_SIZE 8
|
||||||
|
|
||||||
#include "APM_BMP085_hil.h"
|
#include "AP_Baro.h"
|
||||||
|
|
||||||
class APM_BMP085_Class
|
class AP_Baro_BMP085
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
APM_BMP085_Class():
|
AP_Baro_BMP085():
|
||||||
_temp_index(0),
|
_temp_index(0),
|
||||||
_press_index(0){}; // Constructor
|
_press_index(0){}; // Constructor
|
||||||
int32_t RawPress;
|
int32_t RawPress;
|
||||||
|
@ -46,4 +46,4 @@ class APM_BMP085_Class
|
||||||
void Calculate();
|
void Calculate();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // __AP_BARO_BMP085_H__
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
|
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
// AVR LibC Includes
|
// AVR LibC Includes
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
@ -7,15 +6,15 @@ extern "C" {
|
||||||
#include "WConstants.h"
|
#include "WConstants.h"
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "APM_BMP085_hil.h"
|
#include "AP_Baro_BMP085_hil.h"
|
||||||
|
|
||||||
// Constructors ////////////////////////////////////////////////////////////////
|
// Constructors ////////////////////////////////////////////////////////////////
|
||||||
APM_BMP085_HIL_Class::APM_BMP085_HIL_Class()
|
AP_Baro_BMP085_HIL::AP_Baro_BMP085_HIL()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public Methods //////////////////////////////////////////////////////////////
|
// Public Methods //////////////////////////////////////////////////////////////
|
||||||
void APM_BMP085_HIL_Class::Init(int initialiseWireLib, bool apm2_hardware)
|
void AP_Baro_BMP085_HIL::Init(int initialiseWireLib, bool apm2_hardware)
|
||||||
{
|
{
|
||||||
BMP085_State=1;
|
BMP085_State=1;
|
||||||
}
|
}
|
||||||
|
@ -23,7 +22,7 @@ void APM_BMP085_HIL_Class::Init(int initialiseWireLib, bool apm2_hardware)
|
||||||
|
|
||||||
// Read the sensor. This is a state machine
|
// Read the sensor. This is a state machine
|
||||||
// We read one time Temperature (state = 1) and then 4 times Pressure (states 2-5)
|
// We read one time Temperature (state = 1) and then 4 times Pressure (states 2-5)
|
||||||
uint8_t APM_BMP085_HIL_Class::Read()
|
uint8_t AP_Baro_BMP085_HIL::Read()
|
||||||
{
|
{
|
||||||
uint8_t result = 0;
|
uint8_t result = 0;
|
||||||
|
|
||||||
|
@ -42,7 +41,7 @@ uint8_t APM_BMP085_HIL_Class::Read()
|
||||||
return(result);
|
return(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
void APM_BMP085_HIL_Class::setHIL(float _Temp, float _Press)
|
void AP_Baro_BMP085_HIL::setHIL(float _Temp, float _Press)
|
||||||
{
|
{
|
||||||
// TODO: map floats to raw
|
// TODO: map floats to raw
|
||||||
Temp = _Temp;
|
Temp = _Temp;
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
#ifndef APM_BMP085_hil_h
|
|
||||||
#define APM_BMP085_hil_h
|
|
||||||
|
|
||||||
class APM_BMP085_HIL_Class
|
#ifndef __AP_BARO_BMP085_HIL_H__
|
||||||
|
#define __AP_BARO_BMP085_HIL_H__
|
||||||
|
|
||||||
|
#include "AP_Baro.h"
|
||||||
|
|
||||||
|
class AP_Baro_BMP085_HIL
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
uint8_t BMP085_State;
|
uint8_t BMP085_State;
|
||||||
public:
|
public:
|
||||||
APM_BMP085_HIL_Class(); // Constructor
|
AP_Baro_BMP085_HIL(); // Constructor
|
||||||
int32_t RawPress;
|
int32_t RawPress;
|
||||||
int32_t RawTemp;
|
int32_t RawTemp;
|
||||||
int16_t Temp;
|
int16_t Temp;
|
||||||
|
@ -19,4 +22,4 @@ class APM_BMP085_HIL_Class
|
||||||
int32_t _offset_press;
|
int32_t _offset_press;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // __AP_BARO_BMP085_HIL_H__
|
||||||
|
|
Loading…
Reference in New Issue