Skip to content

Commit

Permalink
Change so double interface maps correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
dalathegreat committed Jan 17, 2025
1 parent 3d4f284 commit f5a338f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Software/src/communication/can/comm_can.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,7 @@ void receive_frame_canfd_double_addon() { // This section checks if we have a c
rx_frame.DLC = MCP2518frame.len;
memcpy(rx_frame.data.u8, MCP2518frame.data, MIN(rx_frame.DLC, 64));
//message incoming, pass it on to the handler
map_can_frame_to_variable(&rx_frame, CANFD_ADDON_MCP2518);
map_can_frame_to_variable(&rx_frame, CANFD_NATIVE);
map_can_frame_to_variable(&rx_frame, CANFD_ADDON_MCP2518_DOUBLE);
}
}
#endif // CANFD_ADDON_DOUBLE
Expand Down

0 comments on commit f5a338f

Please sign in to comment.