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

Change dynamic Notch MinHz Default

This commit is contained in:
Mark Haslinghuis 2022-09-08 22:02:46 +02:00
parent ea02d9a7a8
commit 85b3cda0c9

View file

@ -876,6 +876,9 @@ const FC = {
versionFilterDefaults.dterm_lowpass_dyn_min_hz = 75;
versionFilterDefaults.dterm_lowpass_dyn_max_hz = 150;
}
if (semver.gte(this.CONFIG.apiVersion, API_VERSION_1_45)) {
versionFilterDefaults.dyn_notch_min_hz = 100;
}
}
return versionFilterDefaults;
},