1
0
Fork 0
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:
Michael Keller 2019-05-02 00:13:53 +12:00 committed by mikeller
parent aa80cd5912
commit 6074ae5231

View file

@ -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);