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

Change dyn_notch_min_hz default to 100

This commit is contained in:
SupaflyFPV 2022-09-09 22:15:21 +01:00
parent e45afb3a76
commit a70da0f962

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