1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 14:25:20 +03:00

Merge pull request #6731 from etracer65/dterm_notch_cutoff_default

Change dterm_notch_cutoff default to 0
This commit is contained in:
borisbstyle 2018-09-10 19:59:24 +02:00 committed by GitHub
commit a42b26fb73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -130,7 +130,7 @@ void resetPidProfile(pidProfile_t *pidProfile)
.dterm_lowpass_hz = 100, // dual PT1 filtering ON by default
.dterm_lowpass2_hz = 200, // second Dterm LPF ON by default
.dterm_notch_hz = 0,
.dterm_notch_cutoff = 160,
.dterm_notch_cutoff = 0,
.dterm_filter_type = FILTER_PT1,
.itermWindupPointPercent = 40,
.vbatPidCompensation = 0,