Skip to content

Commit

Permalink
Fix disabled disarm when Paralyze is activated in armed state
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeystn committed Feb 16, 2021
1 parent 8c2a8f7 commit c72e7ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/fc/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ bool processRx(timeUs_t currentTimeUs)
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
&& !cmsInMenu
#endif
Expand Down

0 comments on commit c72e7ac

Please sign in to comment.