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

Do not disable RcAdjustments if paralyze when armed

This commit is contained in:
Alexey Stankevich 2021-02-18 00:32:10 +03:00
parent c72e7ac568
commit 2eb787a5ad

View file

@ -957,7 +957,7 @@ bool processRx(timeUs_t currentTimeUs)
}
#endif
if (!cliMode && !IS_RC_MODE_ACTIVE(BOXPARALYZE)) {
if (!cliMode && !(IS_RC_MODE_ACTIVE(BOXPARALYZE) && !ARMING_FLAG(ARMED))) {
processRcAdjustments(currentControlRateProfile);
}