System

SCPI Command:

SYSTem:PRESet
SYSTem:PRESet:ALL
SYSTem:PRESet:BASE
SYSTem:RESet
SYSTem:RESet:ALL
SYSTem:RESet:BASE
class SystemCls[source]

System commands group definition. 63 total commands, 9 Subgroups, 6 group commands

preset() None[source]
# SCPI: SYSTem:PRESet
driver.system.preset()

Presets or resets a selected application package in all scenarios. If <Application> is omitted, all applications are preset or reset.

preset_all() None[source]
# SCPI: SYSTem:PRESet:ALL
driver.system.preset_all()

Presets or resets the base settings and all applications in all scenarios.

preset_all_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SYSTem:PRESet:ALL
driver.system.preset_all_with_opc()

Presets or resets the base settings and all applications in all scenarios.

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

param opc_timeout_ms:

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

preset_base() None[source]
# SCPI: SYSTem:PRESet:BASE
driver.system.preset_base()

Presets or resets only the base settings, not the applications. The method RsCma.System.presetBase and method RsCma. System.resetBase commands do not reset the settings for ‘Start Automatically’, ‘Repetition’ and ‘Stop Condition’ of the selftest configuration. See method RsCma.System.preset and method RsCma.System.reset.

preset_base_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SYSTem:PRESet:BASE
driver.system.preset_base_with_opc()

Presets or resets only the base settings, not the applications. The method RsCma.System.presetBase and method RsCma. System.resetBase commands do not reset the settings for ‘Start Automatically’, ‘Repetition’ and ‘Stop Condition’ of the selftest configuration. See method RsCma.System.preset and method RsCma.System.reset.

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

param opc_timeout_ms:

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

preset_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SYSTem:PRESet
driver.system.preset_with_opc()

Presets or resets a selected application package in all scenarios. If <Application> is omitted, all applications are preset or reset.

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

param opc_timeout_ms:

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

reset() None[source]
# SCPI: SYSTem:RESet
driver.system.reset()

Presets or resets a selected application package in all scenarios. If <Application> is omitted, all applications are preset or reset.

reset_all() None[source]
# SCPI: SYSTem:RESet:ALL
driver.system.reset_all()

Presets or resets the base settings and all applications in all scenarios.

reset_all_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SYSTem:RESet:ALL
driver.system.reset_all_with_opc()

Presets or resets the base settings and all applications in all scenarios.

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

param opc_timeout_ms:

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

reset_base() None[source]
# SCPI: SYSTem:RESet:BASE
driver.system.reset_base()

Presets or resets only the base settings, not the applications. The method RsCma.System.presetBase and method RsCma. System.resetBase commands do not reset the settings for ‘Start Automatically’, ‘Repetition’ and ‘Stop Condition’ of the selftest configuration. See method RsCma.System.preset and method RsCma.System.reset.

reset_base_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SYSTem:RESet:BASE
driver.system.reset_base_with_opc()

Presets or resets only the base settings, not the applications. The method RsCma.System.presetBase and method RsCma. System.resetBase commands do not reset the settings for ‘Start Automatically’, ‘Repetition’ and ‘Stop Condition’ of the selftest configuration. See method RsCma.System.preset and method RsCma.System.reset.

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

param opc_timeout_ms:

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

reset_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SYSTem:RESet
driver.system.reset_with_opc()

Presets or resets a selected application package in all scenarios. If <Application> is omitted, all applications are preset or reset.

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

param opc_timeout_ms:

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

Cloning the Group

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

Subgroups