Measurement

SCPI Command:

STOP:VSE:MEASurement<Instance>
ABORt:VSE:MEASurement<Instance>
class MeasurementCls[source]

Measurement commands group definition. 87 total commands, 19 Subgroups, 2 group commands

abort(opc_timeout_ms: int = -1) None[source]
# SCPI: ABORt:VSE:MEASurement<Instance>
driver.vse.measurement.abort()

Stops the measurement.

param opc_timeout_ms:

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

stop() None[source]
# SCPI: STOP:VSE:MEASurement<Instance>
driver.vse.measurement.stop()

Pauses the measurement.

stop_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: STOP:VSE:MEASurement<Instance>
driver.vse.measurement.stop_with_opc()

Pauses the measurement.

Same as stop, 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.vse.measurement.clone()

Subgroups