Skip to content

Commit dc1cef7

Browse files
committed
Raise upper limit of dyn_idle_min_rpm
1 parent d1887fd commit dc1cef7

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
@@ -492,6 +492,10 @@ pid_tuning.initialize = function (callback) {
492492
$('.rpmFilter').hide();
493493
}
494494

495+
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_45)) {
496+
$('input[name="idleMinRpm-number"]').attr("max", 200);
497+
}
498+
495499
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_43)) {
496500
$('.tab-pid_tuning input[name="motorLimit"]').val(FC.ADVANCED_TUNING.motorOutputLimit);
497501
$('.tab-pid_tuning input[name="cellCount"]').val(FC.ADVANCED_TUNING.autoProfileCellCount);

0 commit comments

Comments
 (0)