Skip to content

Commit

Permalink
Allow RPM filter Q up to 25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pmattila committed Oct 9, 2024
1 parent 121a9af commit 6b18472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/flight/rpm_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ INIT_CODE void rpmFilterInit(void)
const float maxHzLimit = 0.45f * gyro.filterRateHz;

// Q value
const float notchQ = constrainf(config->filter_bank_notch_q[index], 5, 100) / 10;
const float notchQ = constrainf(config->filter_bank_notch_q[index], 5, 250) / 10;

// Motor RPM based notches
if (source >= 1 && source <= getMotorCount()) {
Expand Down

0 comments on commit 6b18472

Please sign in to comment.