mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-12 04:27:35 +08:00
EKF: Don't modify accel bias states and variances when inhibited
This commit is contained in:
committed by
Daniel Agar
parent
3e1f2d8674
commit
dd259a288f
@@ -700,8 +700,14 @@ private:
|
||||
// measurement update with a single measurement
|
||||
// returns true if fusion is performed
|
||||
template <size_t ...Idxs>
|
||||
bool measurementUpdate(const Vector24f &K, const SparseVector24f<Idxs...> &H, float innovation)
|
||||
bool measurementUpdate(Vector24f &K, const SparseVector24f<Idxs...> &H, float innovation)
|
||||
{
|
||||
for (unsigned i = 0; i < 3; i++) {
|
||||
if (_accel_bias_inhibit[i]) {
|
||||
K(13 + i) = 0.0f;
|
||||
}
|
||||
}
|
||||
|
||||
// apply covariance correction via P_new = (I -K*H)*P
|
||||
// first calculate expression for KHP
|
||||
// then calculate P - KHP
|
||||
|
||||
Reference in New Issue
Block a user