Suppose I send a message containing two data bytes:
SetCommand (_CANSEND, 1, DigOut_ret)
SetCommand (_CANSEND, 3, SendData[0])
SetCommand (_CANSEND, 4, SendData[1])
SetCommand (_CANSEND, 2, 2)
If I now want to re-send the same message, can I just do:
SetCommand (_CANSEND, 2, 2)
or do I have to also repeat the other three lines?