Fix CAN filter bitmask

This commit is contained in:
Jasper Blanckenburg 2022-03-18 17:21:25 +01:00
parent 28b4e15ed2
commit 8a05663fbc

View File

@ -24,7 +24,7 @@ void Init_Can_0() {
// mailbox. It will also let through 0x506, but that shouldn't be much of an // mailbox. It will also let through 0x506, but that shouldn't be much of an
// issue. // issue.
Can0.watchFor(CAN_ID_BCU_APS_BRAKE & CAN_ID_BCU_ETC & CAN_ID_BCU_SHIFT_CTRL, Can0.watchFor(CAN_ID_BCU_APS_BRAKE & CAN_ID_BCU_ETC & CAN_ID_BCU_SHIFT_CTRL,
0x7FC); 0x7F9);
Can0.watchFor(CAN_ID_BCU_TIRES); Can0.watchFor(CAN_ID_BCU_TIRES);
Can0.watchFor(CAN_ID_BCU_LAP_TIME); Can0.watchFor(CAN_ID_BCU_LAP_TIME);
Can0.watchFor(CAN_ID_MS4_IGN_REV_ATH); Can0.watchFor(CAN_ID_MS4_IGN_REV_ATH);