Scrpt

SCPI Commands :

SYSTem:SCRPt:ARG
SYSTem:SCRPt:CMD
SYSTem:SCRPt:DATA
SYSTem:SCRPt:RUN
Commands in total: 5
Subgroups: 1
Direct child commands: 4
get_arg() str[source]
# SYSTem:SCRPt:ARG
value: str = driver.system.scrpt.get_arg()

No help available

get_cmd() str[source]
# SYSTem:SCRPt:CMD
value: str = driver.system.scrpt.get_cmd()

No help available

get_data() str[source]
# SYSTem:SCRPt:DATA
value: str = driver.system.scrpt.get_data()

No help available

run() None[source]
# SYSTem:SCRPt:RUN
driver.system.scrpt.run()

No help available

run_with_opc(opc_timeout_ms: int = -1) None[source]
# SYSTem:SCRPt:RUN
driver.system.scrpt.run_with_opc()

No help available

Same as run, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.

Parameters:

opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.

set_arg(arguments: str) None[source]
# SYSTem:SCRPt:ARG
driver.system.scrpt.set_arg(arguments = 'abc')

No help available

set_cmd(cmd_file: str) None[source]
# SYSTem:SCRPt:CMD
driver.system.scrpt.set_cmd(cmd_file = 'abc')

No help available

set_data(data_file: str) None[source]
# SYSTem:SCRPt:DATA
driver.system.scrpt.set_data(data_file = 'abc')

No help available

Cloning the Group

# Create a copy of the original group, that exists independently
scrpt_copy = driver.system.scrpt.clone()

Subgroups