Open hkarnat opened 6 years ago
Yes, it works nicely for me.
Just create a Node and add the following Timer code. It will create a Huuuge ramp from 0 to 65535. Then again 0...
static int i=0;
STCAN_MSG msg;
msg.id = 0x18EF70C9;
msg.isExtended = true;
msg.isRtr = false;
msg.dlc = 8;
msg.data[0] = 0;
msg.data[1] = 0;
msg.data[2] = 0;
msg.data[3] = 0;
msg.data[4] = i ;
msg.data[5] = i >> 8;
msg.data[6] = 0;
msg.data[7] = 0;
msg.cluster = 1;
i++;
SendMsg(msg);
I want to transmit a CAN script cyclically with Busmaster, instead of transmitting individual messages. Is there any way this can be done?