Status

SCPI Command :

STATus:PRESet
class StatusCls[source]

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

get_preset() str[source]
# SCPI: STATus:PRESet
value: str = driver.status.get_preset()

Resets the status registers. All PTRansition parts are set to FFFFh (32767) , 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 parts of STATus:OPERation and STATus:QUEStionable are set to 0, i.e. all events in these registers are not passed on.

return

preset: string

set_preset(preset: str) None[source]
# SCPI: STATus:PRESet
driver.status.set_preset(preset = 'abc')

Resets the status registers. All PTRansition parts are set to FFFFh (32767) , 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 parts of STATus:OPERation and STATus:QUEStionable are set to 0, i.e. all events in these registers are not passed on.

param preset

string

Cloning the Group

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

Subgroups