Section 10: Instrument programming
Series 3700A System Switch/Multimeter Reference Manual
10-60
3700AS-901-01 Rev. D/June 2018
The following code demonstrates how to run a test script that is defined on the local node. For this
example,
scriptVar
is defined on the local node, which is the node that initiates the code to run on
the remote node. The local node must be the master node.
To run scriptVar on node N:
node[
N
].execute(
scriptVar
.source)
The programming example below demonstrates how to run a test script that is defined on a remote
node. For this example,
scriptVar
is defined on the remote node.
To run a script defined on the remote node:
node[
N
].execute("
scriptVar
()")
It is recommended that you copy large scripts to a remote node to improve system performance. See
Copying test scripts across the TSP-Link network
(on page 10-61) for more information.
Coordinating overlapped operations in remote groups
All overlapped operations on all nodes in a group must have completed before the master node can
send a command to the group. If you send a command to a node in a remote group when an
overlapped operation is running on any node in that group, errors will occur.
You can execute the
waitcomplete()
command on the master node or group leader to wait for
overlapped operations. The action of
waitcomplete()
depends on the parameters specified.
If you want to wait for completion of overlapped operations for:
•
All nodes in the local group:
Use
waitcomplete()
without a parameter from the master node
or group leader.
•
A specific group:
Use
waitcomplete(
N
)
with a group number as the parameter from the
master node. This option is not available for group leaders.
•
All nodes in the system:
Use
waitcomplete(0)
from the master node. This option is not
available for group leaders.
For additional information, refer to
(on page 11-450).
The following code shows two examples of using the
waitcomplete()
command from the master
node:
-- Wait for each node in group
N
to complete all overlapped operations.
waitcomplete(
N
)
-- Wait for all groups on the TSP-Link network to complete overlapped operations.
waitcomplete(0)
A group leader can issue the
waitcomplete()
command to wait for the local group to complete all
overlapped operations.
The following code is an example of how to use the
waitcomplete()
command from a group
leader:
-- Wait for all nodes in the local group to complete all overlapped operations.
waitcomplete()
Presently, the Series 3700A has no overlapped commands implemented. However, other
TSP-enabled products, such as the Series 2600A System SourceMeter
®
Instruments, have
overlapped commands. Therefore, when the Series 3700A is a TSP master to a subordinate device
with overlapped commands, use this function to wait until all overlapped operations are completed.