Section 8: TSP command reference
Model 2450 Interactive SourceMeter® Instrument Reference Manual
8-252
2450-901-01 Rev. B/September 2013
Example
value = userstring.get("assetnumber")
print(value)
Read the value associated with a user-defined
string named
"assetnumber"
.
Store it in a variable called value, then print the
variable value.
Output:
236
Also see
(on page 8-249)
(on page 8-250)
(on page 8-251)
waitcomplete()
This function waits for all overlapped commands in a specified group to complete.
Type
TSP-Link accessible
Affected by
Where saved
Default value
Function
No
Usage
waitcomplete()
waitcomplete(
group
)
group
Specifies which TSP-Link group on which to wait
Details
This function will wait for all previously started overlapped commands to complete.
A group number may only be specified when this node is the master node.
If no
group
is specified, the local group is used.
If zero (0) is specified for the
group
, this function waits for all nodes in the system.
Any nodes that are not assigned to a group (group number is 0) are part of the master node's group.
Example 1
waitcomplete()
Waits for all nodes in the local group.
Example 2
waitcomplete(G)
Waits for all nodes in group G.
Example 3
waitcomplete(0)
Waits for all nodes on the TSP-Link network.
Also see
None