Browse Source

EKF: reduce prediction time step from 12 to 8 sec

Reduces susceptibility to incorrect estimation of acceleration bias during sustained yaw rate.
Requires an increase in RAM allocation of 837 Bytes to allow for the longer IMU and output predictor buffers that can be created.
master
Paul Riseborough 7 years ago committed by Lorenz Meier
parent
commit
bba3f70a0e
  1. 2
      EKF/estimator_interface.h

2
EKF/estimator_interface.h

@ -349,7 +349,7 @@ public: @@ -349,7 +349,7 @@ public:
return _imu_updated;
}
static const unsigned FILTER_UPDATE_PERIOD_MS = 12; // ekf prediction period in milliseconds - this should ideally be an integer multiple of the IMU time delta
static const unsigned FILTER_UPDATE_PERIOD_MS = 8; // ekf prediction period in milliseconds - this should ideally be an integer multiple of the IMU time delta
protected:

Loading…
Cancel
Save