Fix broken RX for CANFD native

This commit is contained in:
Daniel Öster 2024-10-04 21:02:36 +03:00
parent b9b328bb38
commit d94e235ad6

View file

@ -643,6 +643,7 @@ void receive_canfd() { // This section checks if we have a complete CAN-FD mess
}
//message incoming, pass it on to the handler
receive_can(&rx_frame, CAN_ADDON_FD_MCP2518);
receive_can(&rx_frame, CANFD_NATIVE);
}
}
#endif