Initiate

SCPI Commands

INITiate:IMMediate
class InitiateCls[source]

Initiate commands group definition. 12 total commands, 6 Subgroups, 1 group commands

immediate() None[source]
# SCPI: INITiate[:IMMediate]
driver.initiate.immediate()

This command starts a (single) new measurement. With measurement count or average count > 0, this means a restart of the corresponding number of measurements. With trace mode MAXHold, MINHold and AVERage, the previous results are reset on restarting the measurement. You can synchronize to the end of the measurement with *OPC, *OPC? or *WAI. For details on synchronization see Remote control via SCPI.

immediate_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: INITiate[:IMMediate]
driver.initiate.immediate_with_opc()

This command starts a (single) new measurement. With measurement count or average count > 0, this means a restart of the corresponding number of measurements. With trace mode MAXHold, MINHold and AVERage, the previous results are reset on restarting the measurement. You can synchronize to the end of the measurement with *OPC, *OPC? or *WAI. For details on synchronization see Remote control via SCPI.

Same as immediate, but waits for the operation to complete before continuing further. Use the RsFswp.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.initiate.clone()

Subgroups