mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 14:25:20 +03:00
Fix to make the AND Logic work on all modes (#8130)
Fix to make the AND Logic work on all modes
This commit is contained in:
parent
aa80cd5912
commit
6074ae5231
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ void updateActivatedModes(void)
|
|||
updateMasksForMac(mac, &andMask, &newMask, bActive);
|
||||
}
|
||||
|
||||
bitArrayXor(&newMask, sizeof(&newMask), &newMask, &andMask);
|
||||
bitArrayXor(&newMask, sizeof(newMask), &newMask, &andMask);
|
||||
|
||||
rcModeUpdate(&newMask);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue