mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-23 00:04:02 -04:00
ArduPlane: Fix logic error
This commit is contained in:
parent
cd5714d059
commit
5b312e9f09
@ -39,7 +39,7 @@ void Plane::ekf_check()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// return immediately if motors are not armed, or ekf check is disabled
|
// return immediately if motors are not armed, or ekf check is disabled
|
||||||
if (!plane.arming.is_armed() || quadplane.in_vtol_posvel_mode() || (g2.fs_ekf_thresh <= 0.0f)) {
|
if (!plane.arming.is_armed() || !quadplane.in_vtol_posvel_mode() || (g2.fs_ekf_thresh <= 0.0f)) {
|
||||||
ekf_check_state.fail_count = 0;
|
ekf_check_state.fail_count = 0;
|
||||||
ekf_check_state.bad_variance = false;
|
ekf_check_state.bad_variance = false;
|
||||||
AP_Notify::flags.ekf_bad = ekf_check_state.bad_variance;
|
AP_Notify::flags.ekf_bad = ekf_check_state.bad_variance;
|
||||||
|
Loading…
Reference in New Issue
Block a user