1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

Refactor RPM Filter (#11765)

* Refactor RPM Filter

* Refactor RPM Filter parameter group
This commit is contained in:
Jan Post 2022-11-12 10:39:21 +01:00 committed by GitHub
parent 9024bfcfd9
commit 931c982a3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 194 additions and 171 deletions

View file

@ -361,7 +361,7 @@ void updateArmingStatus(void)
#ifdef USE_RPM_FILTER
// USE_RPM_FILTER will only be defined if USE_DSHOT and USE_DSHOT_TELEMETRY are defined
// If the RPM filter is anabled and any motor isn't providing telemetry, then disable arming
// If the RPM filter is enabled and any motor isn't providing telemetry, then disable arming
if (isRpmFilterEnabled() && !isDshotTelemetryActive()) {
setArmingDisabled(ARMING_DISABLED_RPMFILTER);
} else {