From 175723f69071bb5d49634622082ffca55e17d200 Mon Sep 17 00:00:00 2001 From: Paul Riseborough Date: Sun, 8 May 2016 18:03:58 +1000 Subject: [PATCH] EKF: Allow for larger accel bias offsets on startup --- EKF/covariance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EKF/covariance.cpp b/EKF/covariance.cpp index 3816e30997..1947505877 100644 --- a/EKF/covariance.cpp +++ b/EKF/covariance.cpp @@ -85,7 +85,7 @@ void Ekf::initialiseCovariance() P[12][12] = P[10][10]; // accel bias - P[13][13] = sq(0.1f * dt); + P[13][13] = sq(0.2f * dt); P[14][14] = P[13][13]; P[15][15] = P[13][13];