Vse

SCPI Commands :

[CONFigure]:SYSTem:VSE:CONNect
[CONFigure]:SYSTem:VSE:DISConnect
class VseCls[source]

Vse commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_connect() str[source]
# SCPI: [CONFigure]:SYSTem:VSE:CONNect
value: str = driver.configure.system.vse.get_connect()

Establishes a connection to the R&S VSE software at the specified <Address>.

return:

address: IP address or host name

get_disconnect() str[source]
# SCPI: [CONFigure]:SYSTem:VSE:DISConnect
value: str = driver.configure.system.vse.get_disconnect()

Terminates a connection to the R&S VSE software at the specified <Address>.

return:

address: IP address or host name

set_connect(address: str) None[source]
# SCPI: [CONFigure]:SYSTem:VSE:CONNect
driver.configure.system.vse.set_connect(address = 'abc')

Establishes a connection to the R&S VSE software at the specified <Address>.

param address:

IP address or host name

set_disconnect(address: str) None[source]
# SCPI: [CONFigure]:SYSTem:VSE:DISConnect
driver.configure.system.vse.set_disconnect(address = 'abc')

Terminates a connection to the R&S VSE software at the specified <Address>.

param address:

IP address or host name