1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-25 01:05:15 +03:00

Merge pull request #2985 from haslinghuis/dynIdleMin

Raise upper limit of dyn_idle_min_rpm
This commit is contained in:
J Blackman 2022-09-19 09:07:35 +10:00 committed by GitHub
commit 185db5beb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);