My machine have to send a sequence of 3 bytes per command via serial port.
for example;
|start byte=0xFF| |second byte = 0x00-0xFE| | third byte = 0x00-0xFE |
which I have already done with it, my method is sending one byte per one byte in for-loop via serial port. The problem is if I would li...