diff --git a/src/js/tabs/pid_tuning.js b/src/js/tabs/pid_tuning.js index 9d6a164c87..24dc64e88a 100644 --- a/src/js/tabs/pid_tuning.js +++ b/src/js/tabs/pid_tuning.js @@ -515,6 +515,10 @@ pid_tuning.initialize = function (callback) { $('.rpmFilter').hide(); } + if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_45)) { + $('input[name="idleMinRpm-number"]').attr("max", 200); + } + if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_43)) { $('.tab-pid_tuning input[name="motorLimit"]').val(FC.ADVANCED_TUNING.motorOutputLimit); $('.tab-pid_tuning select[name="cellCount"]').val(FC.ADVANCED_TUNING.autoProfileCellCount);