mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 17:25:20 +03:00
Bug fix: absolute altitude before arming is now correct when using GPS and Baro
This commit is contained in:
parent
9c3d4603b7
commit
5209a83e6a
1 changed files with 5 additions and 1 deletions
|
@ -146,7 +146,11 @@ void calculateEstimatedAltitude(timeUs_t currentTimeUs)
|
||||||
|
|
||||||
|
|
||||||
if (haveGpsAlt && haveBaroAlt && positionConfig()->altSource == DEFAULT) {
|
if (haveGpsAlt && haveBaroAlt && positionConfig()->altSource == DEFAULT) {
|
||||||
estimatedAltitudeCm = gpsAlt * gpsTrust + baroAlt * (1 - gpsTrust);
|
if (ARMING_FLAG(ARMED)) {
|
||||||
|
estimatedAltitudeCm = gpsAlt * gpsTrust + baroAlt * (1 - gpsTrust);
|
||||||
|
} else {
|
||||||
|
estimatedAltitudeCm = gpsAlt; //absolute altitude is shown before arming, ignore baro
|
||||||
|
}
|
||||||
#ifdef USE_VARIO
|
#ifdef USE_VARIO
|
||||||
// baro is a better source for vario, so ignore gpsVertSpeed
|
// baro is a better source for vario, so ignore gpsVertSpeed
|
||||||
estimatedVario = calculateEstimatedVario(baroAlt, dTime);
|
estimatedVario = calculateEstimatedVario(baroAlt, dTime);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue