You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have two Arduino with a MCP2515 module on each. I installed your library and ran your CAN_write code on one, and your CAN_read code on the other. I did these changes in the code, to send the extended frame :
canMsg2.can_id = 0x18DAF41F | CAN_EFF_FLAG;
mcp2515.sendMessage(MCP2515::TXB1, &canMsg2);
The sender transmits the message with canMsg2.can_id = 0x18DAF41F, But de read receives the message with canMsg2.can_id = 98DAF41F
Could you help me to solve this problem?
The text was updated successfully, but these errors were encountered:
Hello,
I have two Arduino with a MCP2515 module on each. I installed your library and ran your CAN_write code on one, and your CAN_read code on the other. I did these changes in the code, to send the extended frame :
canMsg2.can_id = 0x18DAF41F | CAN_EFF_FLAG;
mcp2515.sendMessage(MCP2515::TXB1, &canMsg2);
The sender transmits the message with canMsg2.can_id = 0x18DAF41F, But de read receives the message with canMsg2.can_id = 98DAF41F
Could you help me to solve this problem?
The text was updated successfully, but these errors were encountered: