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

Merge pull request #11827 from SupaflyFPV/Dynamic-Notch-Hz-Default

Change Dynamic Notch Min Hz default to 100Hz
This commit is contained in:
haslinghuis 2022-09-12 18:21:21 +02:00 committed by GitHub
commit 06c6189ca8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,10 +27,10 @@
#include "dyn_notch.h"
PG_REGISTER_WITH_RESET_TEMPLATE(dynNotchConfig_t, dynNotchConfig, PG_DYN_NOTCH_CONFIG, 0);
PG_REGISTER_WITH_RESET_TEMPLATE(dynNotchConfig_t, dynNotchConfig, PG_DYN_NOTCH_CONFIG, 1);
PG_RESET_TEMPLATE(dynNotchConfig_t, dynNotchConfig,
.dyn_notch_min_hz = 150,
.dyn_notch_min_hz = 100,
.dyn_notch_max_hz = 600,
.dyn_notch_q = 300,
.dyn_notch_count = 3