mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 00:35:26 +03:00
Use defaults for notch cutoffs
This commit is contained in:
parent
7908f0274f
commit
637cc28f26
1 changed files with 3 additions and 3 deletions
|
@ -306,7 +306,7 @@ TABS.pid_tuning.initialize = function (callback) {
|
|||
|
||||
$('.pid_filter input[name="gyroNotch1Frequency"]').val(checked ? hz : 0).attr('disabled', !checked)
|
||||
.attr("min", checked ? 1 : 0).change();
|
||||
$('.pid_filter input[name="gyroNotch1Cutoff"]').attr('disabled', !checked);
|
||||
$('.pid_filter input[name="gyroNotch1Cutoff"]').val(checked ? cutoff : 0).attr('disabled', !checked).change();
|
||||
});
|
||||
|
||||
$('input[id="gyroNotch2Enabled"]').change(function() {
|
||||
|
@ -316,7 +316,7 @@ TABS.pid_tuning.initialize = function (callback) {
|
|||
|
||||
$('.pid_filter input[name="gyroNotch2Frequency"]').val(checked ? hz : 0).attr('disabled', !checked)
|
||||
.attr("min", checked ? 1 : 0).change();
|
||||
$('.pid_filter input[name="gyroNotch2Cutoff"]').attr('disabled', !checked);
|
||||
$('.pid_filter input[name="gyroNotch2Cutoff"]').val(checked ? cutoff : 0).attr('disabled', !checked).change();
|
||||
});
|
||||
|
||||
$('input[id="dtermNotchEnabled"]').change(function() {
|
||||
|
@ -326,7 +326,7 @@ TABS.pid_tuning.initialize = function (callback) {
|
|||
|
||||
$('.pid_filter input[name="dTermNotchFrequency"]').val(checked ? hz : 0).attr('disabled', !checked)
|
||||
.attr("min", checked ? 1 : 0).change();
|
||||
$('.pid_filter input[name="dTermNotchCutoff"]').attr('disabled', !checked);
|
||||
$('.pid_filter input[name="dTermNotchCutoff"]').val(checked ? cutoff : 0).attr('disabled', !checked).change();
|
||||
});
|
||||
|
||||
$('input[id="gyroLowpassEnabled"]').change(function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue