Disable gyro notch filter by default

This commit is contained in:
Oleg Kalachev
2026-07-16 23:21:17 +03:00
parent f8a4cbfee1
commit d9be26c5be
+1 -1
View File
@@ -15,7 +15,7 @@ bool landed;
float accWeight = 0.003; float accWeight = 0.003;
float levelWeight = 0.0002; float levelWeight = 0.0002;
LowPassFilter<Vector> ratesFilter(0.2); // cutoff frequency ~ 40 Hz LowPassFilter<Vector> ratesFilter(0.2); // cutoff frequency ~ 40 Hz
NotchFilter<Vector> ratesNotch(382, 40); NotchFilter<Vector> ratesNotch(382, 0);
void setupEstimate() { void setupEstimate() {
print("Setup estimation\n"); print("Setup estimation\n");