Scrpt
SCPI Commands :
SYSTem:SCRPt:ARG
SYSTem:SCRPt:CMD
SYSTem:SCRPt:DATA
SYSTem:SCRPt:RUN
- class ScrptCls[source]
Scrpt commands group definition. 5 total commands, 1 Subgroups, 4 group commands
- get_arg() str [source]
# SCPI: SYSTem:SCRPt:ARG value: str = driver.system.scrpt.get_arg()
No command help available
- return
arguments: No help available
- get_cmd() str [source]
# SCPI: SYSTem:SCRPt:CMD value: str = driver.system.scrpt.get_cmd()
No command help available
- return
cmd_file: No help available
- get_data() str [source]
# SCPI: SYSTem:SCRPt:DATA value: str = driver.system.scrpt.get_data()
No command help available
- return
data_file: No help available
- run() None [source]
# SCPI: SYSTem:SCRPt:RUN driver.system.scrpt.run()
No command help available
- run_with_opc(opc_timeout_ms: int = - 1) None [source]
# SCPI: SYSTem:SCRPt:RUN driver.system.scrpt.run_with_opc()
No command help available
Same as run, but waits for the operation to complete before continuing further. Use the RsSmbv.utilities.opc_timeout_set() to set the timeout value.
- param opc_timeout_ms
Maximum time to wait in milliseconds, valid only for this call.
- set_arg(arguments: str) None [source]
# SCPI: SYSTem:SCRPt:ARG driver.system.scrpt.set_arg(arguments = 'abc')
No command help available
- param arguments
No help available
- set_cmd(cmd_file: str) None [source]
# SCPI: SYSTem:SCRPt:CMD driver.system.scrpt.set_cmd(cmd_file = 'abc')
No command help available
- param cmd_file
No help available
- set_data(data_file: str) None [source]
# SCPI: SYSTem:SCRPt:DATA driver.system.scrpt.set_data(data_file = 'abc')
No command help available
- param data_file
No help available
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.system.scrpt.clone()
Subgroups