mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-15 03:47:34 +08:00
EKF: fix bug preventing GPS use as a backup height source
This commit is contained in:
+1
-1
@@ -398,7 +398,7 @@ void Ekf::controlGpsFusion()
|
||||
}
|
||||
|
||||
// Determine if GPS should be used as the height source
|
||||
if ((_params.vdist_sensor_type == VDIST_SENSOR_GPS) && !_gps_hgt_faulty) {
|
||||
if (((_params.vdist_sensor_type == VDIST_SENSOR_GPS) || _control_status.flags.gps) && !_gps_hgt_faulty) {
|
||||
_control_status.flags.baro_hgt = false;
|
||||
_control_status.flags.gps_hgt = true;
|
||||
_control_status.flags.rng_hgt = false;
|
||||
|
||||
Reference in New Issue
Block a user