Skip to content
Snippets Groups Projects
Commit 2bcc5cf3 authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

imu filter defaults: set IMU_GYRO_CUTOFF to 80 and MC_DTERM_CUTOFF to 30

tested on at least 5 different vehicles, including AeroFC. The values
should be conservative, good setups (with low vibrations) can increase
these values even further.

increasing IMU_GYRO_CUTOFF allows for better tuning gains (increased P).
parent a99e49a8
No related branches found
No related tags found
No related merge requests found
......@@ -570,4 +570,4 @@ PARAM_DEFINE_FLOAT(MC_TPA_RATE_D, 0.0f);
* @increment 10
* @group Multicopter Attitude Control
*/
PARAM_DEFINE_FLOAT(MC_DTERM_CUTOFF, 0.f);
PARAM_DEFINE_FLOAT(MC_DTERM_CUTOFF, 30.f);
......@@ -248,7 +248,7 @@ PARAM_DEFINE_INT32(SENS_EN_THERMAL, -1);
* @reboot_required true
* @group Sensors
*/
PARAM_DEFINE_FLOAT(IMU_GYRO_CUTOFF, 30.0f);
PARAM_DEFINE_FLOAT(IMU_GYRO_CUTOFF, 80.0f);
/**
* Driver level cutoff frequency for accel
......
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