Skip to content

Commit

Permalink
Merge pull request betaflight#10565 from TheIsotopes/simplified_dterm…
Browse files Browse the repository at this point in the history
…_filter_defaults

setting simplified_dterm_filters to off by defaults
  • Loading branch information
mikeller authored Feb 21, 2021
2 parents a81f076 + 246d3a6 commit 7cce281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/flight/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ void resetPidProfile(pidProfile_t *pidProfile)
.simplified_pd_gain = SIMPLIFIED_TUNING_DEFAULT,
.simplified_dmin_ratio = SIMPLIFIED_TUNING_DEFAULT,
.simplified_ff_gain = SIMPLIFIED_TUNING_DEFAULT,
.simplified_dterm_filter = true,
.simplified_dterm_filter = false,
.simplified_dterm_filter_multiplier = SIMPLIFIED_TUNING_DEFAULT,
);
#ifndef USE_D_MIN
Expand Down

0 comments on commit 7cce281

Please sign in to comment.