It is required that the setting of an arbitrary waveform generator on bench be controlled in time remotely. The device in this case has a serial port. The data is interpreted by the device as per its built in "instruction set" which is given in its user manual.
The concept is that a file shall store the actual data to be sent down the serial port to this device from a PC, and this file shall also store the delay between sending successive lines from this text file down the serial port. What program can I use to carry out this task in the most quick manner i.e without having a write my own application in C# or something? I only need a program which will write data to the serial port, one line at a time. And if the line contains a delay instruction e.g delay(200), the program shall wait for the given time before it reads the next line in the text file and write it to the serial port.