mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 09:16:07 +03:00
Fix disabled disarm when Paralyze is activated in armed state
This commit is contained in:
parent
8c2a8f717a
commit
c72e7ac568
1 changed files with 1 additions and 1 deletions
|
@ -936,7 +936,7 @@ bool processRx(timeUs_t currentTimeUs)
|
||||||
disarmAt = currentTimeUs + autoDisarmDelayUs; // extend auto-disarm timer
|
disarmAt = currentTimeUs + autoDisarmDelayUs; // extend auto-disarm timer
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!IS_RC_MODE_ACTIVE(BOXPARALYZE)
|
if (!(IS_RC_MODE_ACTIVE(BOXPARALYZE) && !ARMING_FLAG(ARMED))
|
||||||
#ifdef USE_CMS
|
#ifdef USE_CMS
|
||||||
&& !cmsInMenu
|
&& !cmsInMenu
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue