Status
SCPI Command :
STATus:PRESet
- Commands in total: 22Subgroups: 3Direct child commands: 1
- get_preset() str[source]
# 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.
- Returns:
preset: string
- set_preset(preset: str) None[source]
# 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.
- Parameters:
preset – string
Cloning the Group
# Create a copy of the original group, that exists independently
status_copy = driver.status.clone()
Subgroups