Section 11: TSP command reference Series 3700A System Switch/Multimeter Reference Manual
11-436 3700AS-901-01 Rev. D/June 2018
tspnet.disconnect()
This function disconnects a specified TSP-Net session.
Usage
tspnet.disconnect(connectionID)
The connection ID returned from tspnet.connect()
Details
This function disconnects the two devices by closing the connection. The connectionID is the
session handle returned by tspnet.connect().
For TSP-enabled devices, this aborts any remotely running commands or scripts.
Example
testID = tspnet.connect("192.0.2.0")
-- Use the connection
tspnet.disconnect(testID)
Create a TSP-Net session.
Close the session.
Also see
tspnet.connect() (on page 11-434)
tspnet.execute()
This function sends a command string to the remote device.
Usage
tspnet.execute("connectionID", "commandString")
value1 = tspnet.execute("connectionID", "commandString", formatString)
value1, value2 = tspnet.execute("connectionID", "commandString", formatString)
value1, ..., valueN = tspnet.execute("connectionID", "commandString", formatString)
The connection ID returned from tspnet.connect()
The command to send to the remote device
The first value decoded from the response message
The second value decoded from the response message
The Nth value decoded from the response message; there is one return value for
each format specifier in the format string
One or more values separated with commas
Format string for the output