1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 16:55:24 +03:00

Add throttle limit to PID Tuning tab

This commit is contained in:
Bruce Luckcuck 2018-11-24 20:07:25 -05:00
parent 2f3a319f67
commit 892640e35f
5 changed files with 102 additions and 0 deletions

View file

@ -308,6 +308,13 @@ TABS.pid_tuning.initialize = function (callback) {
$('.antigravity table td:first-child').hide();
}
if (semver.gte(CONFIG.apiVersion, "1.41.0")) {
$('select[id="throttleLimitType"]').val(RC_tuning.throttleLimitType);
$('.throttle_limit input[name="throttleLimitPercent"]').val(RC_tuning.throttleLimitPercent);
} else {
$('.throttle_limit').hide();
}
$('input[id="gyroNotch1Enabled"]').change(function() {
var checked = $(this).is(':checked');
var hz = FILTER_CONFIG.gyro_notch_hz > 0 ? FILTER_CONFIG.gyro_notch_hz : DEFAULT.gyro_notch_hz;
@ -520,6 +527,12 @@ TABS.pid_tuning.initialize = function (callback) {
ADVANCED_TUNING.antiGravityMode = $('select[id="antiGravityMode"]').val();
}
if (semver.gte(CONFIG.apiVersion, "1.41.0")) {
RC_tuning.throttleLimitType = $('select[id="throttleLimitType"]').val();
RC_tuning.throttleLimitPercent = parseInt($('.throttle_limit input[name="throttleLimitPercent"]').val());
}
}
function showAllPids() {