You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.7 KiB
75 lines
1.7 KiB
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- |
|
|
|
#include <AP_Baro.h> |
|
#include "AP_Baro_HIL.h" |
|
#include <AP_HAL.h> |
|
extern const AP_HAL::HAL& hal; |
|
|
|
// Public Methods ////////////////////////////////////////////////////////////// |
|
bool AP_Baro_HIL::init() |
|
{ |
|
BMP085_State=1; |
|
return true; |
|
} |
|
|
|
// Read the sensor. This is a state machine |
|
// We read one time Temperature (state = 1) and then 4 times Pressure (states 2-5) |
|
uint8_t AP_Baro_HIL::read() |
|
{ |
|
uint8_t result = 0; |
|
|
|
if (_count != 0) { |
|
result = 1; |
|
Press = ((float)_pressure_sum) / _count; |
|
Temp = ((float)_temperature_sum) / _count; |
|
_pressure_samples = _count; |
|
_count = 0; |
|
_pressure_sum = 0; |
|
_temperature_sum = 0; |
|
} |
|
|
|
return result; |
|
} |
|
|
|
void AP_Baro_HIL::setHIL(float altitude_msl) |
|
{ |
|
// approximate a barometer. This uses the typical base pressure in |
|
// Canberra, Australia |
|
const float temperature = 312; |
|
|
|
float y = (altitude_msl - 584.0) / 29.271267; |
|
y /= (temperature / 10.0) + 273.15; |
|
y = 1.0/exp(y); |
|
y *= 95446.0; |
|
|
|
_count++; |
|
_pressure_sum += y; |
|
_temperature_sum += temperature; |
|
if (_count == 128) { |
|
// we have summed 128 values. This only happens |
|
// when we stop reading the barometer for a long time |
|
// (more than 1.2 seconds) |
|
_count = 64; |
|
_pressure_sum /= 2; |
|
_temperature_sum /= 2; |
|
} |
|
|
|
healthy = true; |
|
_last_update = hal.scheduler->millis(); |
|
} |
|
|
|
float AP_Baro_HIL::get_pressure() { |
|
return Press; |
|
} |
|
|
|
float AP_Baro_HIL::get_temperature() { |
|
return Temp; |
|
} |
|
|
|
int32_t AP_Baro_HIL::get_raw_pressure() { |
|
return Press; |
|
} |
|
|
|
int32_t AP_Baro_HIL::get_raw_temp() { |
|
return Temp; |
|
}
|
|
|