Skip to content

Commit

Permalink
raise default dTermLPF1 to 90 (emuflight#558)
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdCopter authored May 8, 2021
1 parent cdb9e0e commit 117987e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/flight/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ void resetPidProfile(pidProfile_t *pidProfile) {
[PID_MAG] = {40, 0, 0, 0},
},
.dFilter = {
[PID_ROLL] = {2, 65, 200, 0}, // wc, dtermlpf, dtermlpf2, smartSmoothing
[PID_PITCH] = {2, 65, 200, 0}, // wc, dtermlpf, dtermlpf2, smartSmoothing
[PID_YAW] = {0, 65, 200, 0}, // wc, dtermlpf, dtermlpf2, smartSmoothing
[PID_ROLL] = {2, 90, 200, 0}, // wc, dtermlpf, dtermlpf2, smartSmoothing
[PID_PITCH] = {2, 90, 200, 0}, // wc, dtermlpf, dtermlpf2, smartSmoothing
[PID_YAW] = {0, 90, 200, 0}, // wc, dtermlpf, dtermlpf2, smartSmoothing
},
.pidSumLimit = PIDSUM_LIMIT_MAX,
.pidSumLimitYaw = PIDSUM_LIMIT_YAW,
Expand Down

0 comments on commit 117987e

Please sign in to comment.