Skip to content

Commit

Permalink
Merge pull request #2985 from haslinghuis/dynIdleMin
Browse files Browse the repository at this point in the history
Raise upper limit of dyn_idle_min_rpm
  • Loading branch information
blckmn committed Sep 18, 2022
2 parents d5e685f + 681b326 commit 185db5b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/js/tabs/pid_tuning.js
Expand Up @@ -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);
Expand Down

0 comments on commit 185db5b

Please sign in to comment.