mirror of https://github.com/ArduPilot/ardupilot
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#include "AP_Airspeed_SITL.h"
|
|
|
|
#if AP_AIRSPEED_SITL_ENABLED
|
|
|
|
#include <AP_Baro/AP_Baro.h>
|
|
#include <SITL/SITL.h>
|
|
|
|
// return the current differential_pressure in Pascal
|
|
bool AP_Airspeed_SITL::get_differential_pressure(float &pressure)
|
|
{
|
|
const uint8_t _instance = get_instance();
|
|
|
|
if (_instance >= AIRSPEED_MAX_SENSORS) {
|
|
return false;
|
|
}
|
|
|
|
pressure = AP::sitl()->state.airspeed_raw_pressure[_instance];
|
|
|
|
return true;
|
|
}
|
|
|
|
// get last temperature
|
|
bool AP_Airspeed_SITL::get_temperature(float &temperature)
|
|
{
|
|
const uint8_t _instance = get_instance();
|
|
|
|
if (_instance >= AIRSPEED_MAX_SENSORS) {
|
|
return false;
|
|
}
|
|
|
|
const auto *sitl = AP::sitl();
|
|
|
|
// this was mostly swiped from SIM_Airspeed_DLVR:
|
|
const float sim_alt = sitl->state.altitude;
|
|
|
|
float sigma, delta, theta;
|
|
AP_Baro::SimpleAtmosphere(sim_alt * 0.001f, sigma, delta, theta);
|
|
|
|
// To Do: Add a sensor board temperature offset parameter
|
|
temperature = (KELVIN_TO_C(SSL_AIR_TEMPERATURE * theta)) + 25.0;
|
|
|
|
return true;
|
|
}
|
|
|
|
#endif // AP_AIRSPEED_SITL_ENABLED
|