Section 9: TSP command reference Series 2600B System SourceMeter® instrument Reference Manual
9-166 2600BS-901-01 Rev. F/August 2021
node[32].execute(TestDut.source)
Runs the test script stored in the variable
TestDut
(previously stored on the master node) on
node 32.
Also see
TSP advanced features (on page 8-89)
tsplink.group (on page 9-383)
node[N].getglobal()
This function returns the value of a global variable. This command is not available on the 2604B, 2614B,
or 2634B.
Usage
value = node[N].getglobal("name")
The value of the variable
The node number of this instrument (1 to 64)
Details
This function retrieves the value of a global variable from the runtime environment of this node.
Do not use this command to retrieve the value of a global variable from the local node. Instead,
access the global variable directly. This command should only be used from a remote master when
controlling this instrument over a TSP-Link network.
Example
print(node[5].getglobal("test_val"))
Retrieves and outputs the value of the global variable named test_val from node 5.
Also see
node[N].setglobal() (on page 9-167)
TSP advanced features (on page 8-89)