Initiate

SCPI Command :

INITiate[:IMMediate]
class InitiateCls[source]

Initiate commands group definition. 13 total commands, 7 Subgroups, 1 group commands

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

Starts a (single) new measurement. With sweep 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 .

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

Starts a (single) new measurement. With sweep 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 .

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