1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 19:40:31 +03:00

Change lowpass 1 on D from biquad to pt1 (#8688)

Change lowpass 1 on D from biquad to pt1
This commit is contained in:
Michael Keller 2019-08-10 17:27:45 +12:00 committed by GitHub
commit c40f6b15ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -188,7 +188,7 @@ void resetPidProfile(pidProfile_t *pidProfile)
// value to 0 otherwise Configurator versions 10.4 and earlier will also
// reset the lowpass filter type to PT1 overriding the desired BIQUAD setting.
.dterm_lowpass2_hz = 150, // second Dterm LPF ON by default
.dterm_filter_type = FILTER_BIQUAD,
.dterm_filter_type = FILTER_PT1,
.dterm_filter2_type = FILTER_PT1,
.dyn_lpf_dterm_min_hz = 70,
.dyn_lpf_dterm_max_hz = 170,