1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-26 01:35:28 +03:00

Rebase to master

This commit is contained in:
Mark Haslinghuis 2021-12-21 12:58:45 +01:00
parent 393be634b9
commit 611190603f
No known key found for this signature in database
GPG key ID: 198B0F616296A584

View file

@ -362,6 +362,7 @@ TuningSliders.updatePidSlidersDisplay = function() {
$('#sliderPidsModeSelect').val(this.sliderPidsMode);
} else {
this.pidSlidersUnavailable = false;
this.calculateNewPids(true);
FC.PID_NAMES.forEach(function (elementPid, indexPid) {
@ -369,6 +370,7 @@ TuningSliders.updatePidSlidersDisplay = function() {
pidElements.each(function (indexInput) {
const val = parseInt($(this).val());
if (indexPid < 3 && indexInput < 3) {
if (val !== FC.PIDS[indexPid][indexInput]) {
TuningSliders.pidSlidersUnavailable = true;
@ -378,6 +380,7 @@ TuningSliders.updatePidSlidersDisplay = function() {
const dMinRoll = (val !== FC.ADVANCED_TUNING.dMinRoll) && indexPid === 0;
const dMinPitch = (val !== FC.ADVANCED_TUNING.dMinPitch) && indexPid === 1;
const dMinYaw = (val !== FC.ADVANCED_TUNING.dMinYaw) && indexPid === 2;
if (dMinRoll || dMinPitch || dMinYaw) {
TuningSliders.pidSlidersUnavailable = true;
}
@ -386,12 +389,14 @@ TuningSliders.updatePidSlidersDisplay = function() {
const feedforwardRoll = (val !== FC.ADVANCED_TUNING.feedforwardRoll) && indexPid === 0;
const feedforwardPitch = (val !== FC.ADVANCED_TUNING.feedforwardPitch) && indexPid === 1;
const feedforwardYaw = (val !== FC.ADVANCED_TUNING.feedforwardYaw) && indexPid === 2;
if (feedforwardRoll || feedforwardPitch || feedforwardYaw) {
TuningSliders.pidSlidersUnavailable = true;
}
}
}
});
});
if ($('input[id="useIntegratedYaw"]').is(':checked')) {
this.pidSlidersUnavailable = true;