mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 16:55:24 +03:00
Merge pull request #2985 from haslinghuis/dynIdleMin
Raise upper limit of dyn_idle_min_rpm
This commit is contained in:
commit
185db5beb5
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue