1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-25 09:16:01 +03:00

Merge remote-tracking branch 'upstream/master' into abo_mr_inverted_crash_detection

This commit is contained in:
breadoven 2024-06-18 13:41:17 +01:00
commit e8a9ecf762
53 changed files with 1309 additions and 355 deletions

View file

@ -4438,7 +4438,7 @@ uint32_t distanceToFirstWP(void)
bool navigationPositionEstimateIsHealthy(void)
{
return (posControl.flags.estPosStatus >= EST_USABLE) && STATE(GPS_FIX_HOME);
return posControl.flags.estPosStatus >= EST_USABLE && posControl.flags.estAltStatus >= EST_USABLE && STATE(GPS_FIX_HOME);
}
navArmingBlocker_e navigationIsBlockingArming(bool *usedBypass)