1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-30 15:52:12 +01:00

Added power-up barometric altitude calibration. Height accuracy is not sufficient, for better results we may want some filtering and/or another sensor/ADC. But at least now the BaroAltitude.Altitude object provides meaningful data comparing to uncalibrated zero height.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2251 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
osnwt 2010-12-18 23:40:17 +00:00 committed by osnwt
parent 7f00e88321
commit 7d084aca49

View File

@ -69,6 +69,10 @@ int32_t AltitudeInitialize()
*/
static void altitudeTask(void *parameters)
{
// For power-up zero height pressure calibration
static float p0 = BMP085_P0 / 1000.0;
static uint32_t i = 15;
BaroAltitudeData data;
portTickType lastSysTime;
@ -93,8 +97,13 @@ static void altitudeTask(void *parameters)
// Convert from Pa to kPa
data.Pressure = PIOS_BMP085_GetPressure() / 1000.0;
// Save zero height pressure as p0
if (i && (--i == 0)) {
p0 = data.Pressure;
}
// Compute the current altitude (all pressures in kPa)
data.Altitude = 44330.0 * (1.0 - powf((data.Pressure / (BMP085_P0 / 1000.0)), (1.0 / 5.255)));
data.Altitude = 44330.0 * (1.0 - powf((data.Pressure / p0), (1.0 / 5.255)));
// Update the AltitudeActual UAVObject
BaroAltitudeSet(&data);