1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

ItermCutoff and tooltip

This commit is contained in:
Asizon 2020-02-16 12:46:09 +01:00
parent 682472e1b0
commit 6ba32b94fc
2 changed files with 5 additions and 1 deletions

View file

@ -3542,7 +3542,7 @@
"message": "I Term Relax" "message": "I Term Relax"
}, },
"pidTuningItermRelaxHelp": { "pidTuningItermRelaxHelp": {
"message": "Limits the accumulation of I Term when fast movements happen. This helps specially to reduce the bounceback at the end of rolls and other fast movements. You can choose the axes in which this is active, and if the fast movement is detectd using the Gyro or the Setpoint (stick)." "message": "Limits the accumulation of I Term when fast movements happen. This helps specially to reduce the bounceback at the end of rolls and other fast movements. You can choose the axes in which this is active, and if the fast movement is detectd using the Gyro or the Setpoint (stick). <br><br>Cutoff: lower values suppress bounce-back after flips in low authority quads, high values increase high-rate turn precision for racing.<br>Set to 30-40 for racing, 20 for responsive freestyle builds, 10 for heavier freestyle quads, 3-5 for X-class."
}, },
"pidTuningItermRelaxAxes": { "pidTuningItermRelaxAxes": {
"message": "Axes", "message": "Axes",

View file

@ -234,6 +234,10 @@ TABS.pid_tuning.initialize = function (callback) {
$('select[id="itermrelaxType"]').val(ADVANCED_TUNING.itermRelaxType); $('select[id="itermrelaxType"]').val(ADVANCED_TUNING.itermRelaxType);
$('input[name="itermRelaxCutoff"]').val(ADVANCED_TUNING.itermRelaxCutoff); $('input[name="itermRelaxCutoff"]').val(ADVANCED_TUNING.itermRelaxCutoff);
if (semver.gte(CONFIG.apiVersion, "1.43.0")) {
$('.itermrelax input[name="itermRelaxCutoff"]').attr("max","50");
}
itermRelaxCheck.change(function() { itermRelaxCheck.change(function() {
var checked = $(this).is(':checked'); var checked = $(this).is(':checked');