You do not need to add at all
Timeout and time control are two different issues...
Timeout only comes into play when the serial device is taking too long to respond. When this occurs, it will output an error. Think of timeout as the amont of time that each VISA function determines that there is an error.
Now in your case, the longest time that the VISA has to wait is for the first command. so just set timeout to be 61000ms (slightly above the value) and you should be fine!
Point of clarification:
I am still not quite certain which one of the following is your case:
1. Your machine takes time (say 60000 for the first command) to respond to the input (whether it�s a read request or a write command) or,
2. You wan
t to the vi to wait (say 60000 after the first command), before sending a second command.
If the case is 1st, then what I had told you is what you should try implementing. If your case is the 2nd, you do not have to be concerned at all with timeouts, as "wait until ms time� does not interfere with VISA (or simply put, VISA won�t display error as long as it gets a response from serial device within the timeout period, and whatever happens after is irrelevant, until next VISA command!)
Also, wait ms and wait until next ms multiple are VERY different. Go to help for their descriptions and determine which one do you need!
I hope this helps!