[indi] fix thrust filtering after #3248 (#3297)

guidance indi thrust is broken when using specific force gain
This commit is contained in:
Gautier Hattenberger
2024-06-10 09:51:37 +02:00
committed by GitHub
parent e4142d1182
commit 18fa11d99d
@@ -372,7 +372,8 @@ void guidance_indi_filter_thrust(void)
// Actuator dynamics
thrust_act = thrust_act + thrust_dyn * (thrust_in - thrust_act);
// same filter as for the acceleorth_2_low_pass(&thrust_filt, thrust_act);
// same filter as for the acceleration
update_butterworth_2_low_pass(&thrust_filt, thrust_act);
}
#endif