Status

SCPI Commands

STATus:PRESet
class StatusCls[source]

Status commands group definition. 112 total commands, 3 Subgroups, 1 group commands

preset() None[source]
# SCPI: STATus:PRESet
driver.status.preset()

This command resets the edge detectors and ENABle parts of all registers to a defined value. All PTRansition parts are set to FFFFh, i.e. all transitions from 0 to 1 are detected. All NTRansition parts are set to 0, i.e. a transition from 1 to 0 in a CONDition bit is not detected. The ENABle part of the method RsFswp.Status.Operation.Event.get_ and method RsFswp.Status.Questionable.Event.get_ registers are set to 0, i.e. all events in these registers are not passed on.

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

This command resets the edge detectors and ENABle parts of all registers to a defined value. All PTRansition parts are set to FFFFh, i.e. all transitions from 0 to 1 are detected. All NTRansition parts are set to 0, i.e. a transition from 1 to 0 in a CONDition bit is not detected. The ENABle part of the method RsFswp.Status.Operation.Event.get_ and method RsFswp.Status.Questionable.Event.get_ registers are set to 0, i.e. all events in these registers are not passed on.

Same as preset, 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.status.clone()

Subgroups