Browse Source

AP_NavEKF : Fix bug that leaves height unconstrained in static mode

mission-4.1.18
priseborough 11 years ago committed by Andrew Tridgell
parent
commit
6ace31b6c1
  1. 2
      libraries/AP_NavEKF/AP_NavEKF.cpp

2
libraries/AP_NavEKF/AP_NavEKF.cpp

@ -618,7 +618,7 @@ void NavEKF::SelectVelPosFusion() @@ -618,7 +618,7 @@ void NavEKF::SelectVelPosFusion()
// we only fuse position and height in static mode
fuseVelData = false;
fusePosData = true;
fusePosData = true;
fuseHgtData = true;
}
// Perform fusion if conditions are met

Loading…
Cancel
Save