Section 8: TSP command reference Model 2461 Interactive SourceMeter® Instrument Reference Manual8-90 2461-901-01 A/November 2015node[N].execute()This function starts test scripts on a remote TSP-Link node.Type TSP-Link accessible Affected by Where saved Default valueFunction Yes (see Details)Usagenode[N].execute(scriptCode)N The node number of this instrument (1 to 64)scriptCode A string containing the source codeDetailsThis command is only applicable to TSP-Link systems. You can use this command to use the remotemaster node to run a script on the specified node. This function does not run test scripts on themaster node; only on the subordinate node when initiated by the master node.This function may only be called when the group number of the node is different than the node of themaster.This function does not wait for the script to finish execution.Example 1node[2].execute(sourcecode) Runs script code on node 2. The code is in a string variablecalled sourcecode.Example 2node[3].execute("x = 5") Runs script code in string constant ("x = 5") to set xequal to 5 on node 3.Example 3node[32].execute(TestDut.source) Runs the test script stored in the variable TestDut(previously stored on the master node) on node 32.Also seetsplink.group (on page 8-317)node[N].getglobal()This function returns the value of a global variable.Type TSP-Link accessible Affected by Where saved Default valueFunction YesUsagevalue = node[N].getglobal(name)value The value of the variableN The node number of this instrument (1 to 64)name The global variable name