mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 10:28:29 -04:00
AP_AHRS: fixed bug in blended EKF bias
The bug fix in #20431 was incomplete, and ended up with the wrong blended accel bias. This fixes it
This commit is contained in:
parent
274d526a69
commit
63140014c1
@ -587,7 +587,7 @@ void AP_AHRS::update_EKF3(void)
|
|||||||
_accel_ef_ekf[i] = _dcm_matrix * accel;
|
_accel_ef_ekf[i] = _dcm_matrix * accel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_accel_ef_ekf_blended = _accel_ef_ekf[_ins.get_primary_accel()];
|
_accel_ef_ekf_blended = _accel_ef_ekf[primary_imu>=0?primary_imu:_ins.get_primary_accel()];
|
||||||
nav_filter_status filt_state;
|
nav_filter_status filt_state;
|
||||||
EKF3.getFilterStatus(-1,filt_state);
|
EKF3.getFilterStatus(-1,filt_state);
|
||||||
update_notify_from_filter_status(filt_state);
|
update_notify_from_filter_status(filt_state);
|
||||||
|
Loading…
Reference in New Issue
Block a user