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
Hi, ID's in savvycan dont appear full. tested on desktop and vehicle, same issue
i use this to send can message via another teensy as a simple can test message
CAN_message_t msgV;
msgV.id = 0x18ABCDEF;
msgV.flags.extended = true;
msgV.len = 8;
msgV.buf[0] = 0x00;
msgV.buf[1] = 0x00;
msgV.buf[2] = 0xC0;
msgV.buf[3] = 0x0C;
msgV.buf[4] = 0x00;
msgV.buf[5] = 0x17;
msgV.buf[6] = 0x02;
msgV.buf[7] = 0x20;
V_Bus.write(msgV);
same with other standard id like 0x0CACAA08
The text was updated successfully, but these errors were encountered:
Hi, ID's in savvycan dont appear full. tested on desktop and vehicle, same issue
i use this to send can message via another teensy as a simple can test message
CAN_message_t msgV;
msgV.id = 0x18ABCDEF;
msgV.flags.extended = true;
msgV.len = 8;
msgV.buf[0] = 0x00;
msgV.buf[1] = 0x00;
msgV.buf[2] = 0xC0;
msgV.buf[3] = 0x0C;
msgV.buf[4] = 0x00;
msgV.buf[5] = 0x17;
msgV.buf[6] = 0x02;
msgV.buf[7] = 0x20;
V_Bus.write(msgV);
same with other standard id like 0x0CACAA08
The text was updated successfully, but these errors were encountered: