Skip to content
Snippets Groups Projects
Commit d4262bce authored by Paul Riseborough's avatar Paul Riseborough Committed by Lorenz Meier
Browse files

EKF2 output predictor update (#4606)

* ekf2: Update tuning parameter documentation

* ecl: update submodule reference

Enables selection of a new output predictor method
parent c08eec0a
No related branches found
No related tags found
No related merge requests found
Subproject commit e3b9800cac459e7c279395c18191a872f465f848
Subproject commit e2d9e19a5dde27e8db0d8f838ddd614bfd4b0f1b
......@@ -701,10 +701,9 @@ PARAM_DEFINE_FLOAT(EKF2_OF_POS_Y, 0.0f);
PARAM_DEFINE_FLOAT(EKF2_OF_POS_Z, 0.0f);
/**
* Time constant of the velocity output prediction and smoothing filter
* Time constant of the velocity output prediction and smoothing filter. Controls how tightly the velocity output tracks the EKF states. Set to a negative number to disable the EKF velocity state tracking. This will cause the output velocity to track the output position time derivative.
*
* @group EKF2
* @min 0.1
* @max 1.0
* @unit s
* @decimal 2
......@@ -712,7 +711,7 @@ PARAM_DEFINE_FLOAT(EKF2_OF_POS_Z, 0.0f);
PARAM_DEFINE_FLOAT(EKF2_TAU_VEL, 0.5f);
/**
* Time constant of the position output prediction and smoothing filter
* Time constant of the position output prediction and smoothing filter. Controls how tightly the output track the EKF states.
*
* @group EKF2
* @min 0.1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment