1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-14 20:10:18 +03:00

Fix to make the AND Logic work on all modes

This fixes #8118
This commit is contained in:
root 2019-04-30 06:58:24 +00:00
parent ddf051fb35
commit 130266af7b

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