Skip to content

Commit 185db5b

Browse files
authored
Merge pull request #2985 from haslinghuis/dynIdleMin
Raise upper limit of dyn_idle_min_rpm
2 parents d5e685f + 681b326 commit 185db5b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/js/tabs/pid_tuning.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,10 @@ pid_tuning.initialize = function (callback) {
515515
$('.rpmFilter').hide();
516516
}
517517

518+
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_45)) {
519+
$('input[name="idleMinRpm-number"]').attr("max", 200);
520+
}
521+
518522
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_43)) {
519523
$('.tab-pid_tuning input[name="motorLimit"]').val(FC.ADVANCED_TUNING.motorOutputLimit);
520524
$('.tab-pid_tuning select[name="cellCount"]').val(FC.ADVANCED_TUNING.autoProfileCellCount);

0 commit comments

Comments
 (0)