2011-11-16 21:49:56 -04:00
|
|
|
/*
|
|
|
|
SITL handling
|
|
|
|
|
|
|
|
This simulates a barometer
|
|
|
|
|
|
|
|
Andrew Tridgell November 2011
|
|
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <math.h>
|
2011-12-11 00:30:44 -04:00
|
|
|
#include <AP_Baro.h> // ArduPilot Mega BMP085 Library
|
2012-06-29 02:06:28 -03:00
|
|
|
#include <SITL.h>
|
2011-11-16 21:49:56 -04:00
|
|
|
#include "desktop.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2012-06-29 02:06:28 -03:00
|
|
|
extern SITL sitl;
|
|
|
|
|
2011-11-16 21:49:56 -04:00
|
|
|
/*
|
|
|
|
setup the barometer with new input
|
|
|
|
altitude is in meters
|
|
|
|
*/
|
|
|
|
void sitl_update_barometer(float altitude)
|
|
|
|
{
|
2011-12-11 00:30:44 -04:00
|
|
|
extern AP_Baro_BMP085_HIL barometer;
|
2011-11-16 21:49:56 -04:00
|
|
|
double Temp, Press, y;
|
2012-07-05 03:27:13 -03:00
|
|
|
static uint32_t last_update;
|
|
|
|
|
|
|
|
// 80Hz, to match the real APM2 barometer
|
|
|
|
if (millis() - last_update < 12) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
last_update = millis();
|
2011-11-16 21:49:56 -04:00
|
|
|
|
|
|
|
Temp = 312;
|
|
|
|
|
|
|
|
y = ((altitude-584.0) * 1000.0) / 29271.267;
|
|
|
|
y /= (Temp / 10.0) + 273.15;
|
|
|
|
y = 1.0/exp(y);
|
|
|
|
y *= 95446.0;
|
|
|
|
|
2012-06-29 02:06:28 -03:00
|
|
|
Press = y + (rand_float() * sitl.baro_noise);
|
2011-11-16 21:49:56 -04:00
|
|
|
|
|
|
|
barometer.setHIL(Temp, Press);
|
|
|
|
}
|