From e69b1db699321a4efed8b9983fbab5619d7c3581 Mon Sep 17 00:00:00 2001 From: bnsgeyer Date: Sun, 2 Jun 2024 08:50:02 -0400 Subject: [PATCH] AC_Autotune:change tuning fraction of FF tune --- libraries/AC_AutoTune/AC_AutoTune_Heli.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AC_AutoTune/AC_AutoTune_Heli.cpp b/libraries/AC_AutoTune/AC_AutoTune_Heli.cpp index 1aabc78ba58fcf..84e81ff4bcc282 100644 --- a/libraries/AC_AutoTune/AC_AutoTune_Heli.cpp +++ b/libraries/AC_AutoTune/AC_AutoTune_Heli.cpp @@ -1249,7 +1249,7 @@ void AC_AutoTune_Heli::set_gains_post_tune(AxisType test_axis) // FF is adjusted until rate requested is achieved void AC_AutoTune_Heli::updating_rate_ff_up(float &tune_ff, sweep_info &test_data, float &next_freq) { - float tune_tgt = 0.8; + float tune_tgt = 0.95; float tune_tol = 0.025; next_freq = test_data.freq; if (test_data.gain < tune_tgt - tune_tol || test_data.gain > tune_tgt + tune_tol) {