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

Merge pull request #10841 from ctzsnooze/Default-yaw-lowpass-to-100Hz

Default yaw lowpass to 100hz
This commit is contained in:
Michael Keller 2021-08-04 01:24:55 +12:00 committed by GitHub
commit 547f874cfd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,7 +135,7 @@ void resetPidProfile(pidProfile_t *pidProfile)
}, },
.pidSumLimit = PIDSUM_LIMIT, .pidSumLimit = PIDSUM_LIMIT,
.pidSumLimitYaw = PIDSUM_LIMIT_YAW, .pidSumLimitYaw = PIDSUM_LIMIT_YAW,
.yaw_lowpass_hz = 0, .yaw_lowpass_hz = 100,
.dterm_notch_hz = 0, .dterm_notch_hz = 0,
.dterm_notch_cutoff = 0, .dterm_notch_cutoff = 0,
.itermWindupPointPercent = 100, .itermWindupPointPercent = 100,