Enable
SCPI Command :
STATus:QUEStionable:TEMPerature:ENABle
- class EnableCls[source]
Enable commands group definition. 1 total commands, 0 Subgroups, 1 group commands
- class EnableStruct[source]
Response structure. Fields:
Summary_Bit: int: No parameter help available
Channel_Name: str: String containing the name of the channel. The parameter is optional. If you omit it, the command works for the currently active channel.
- get() EnableStruct [source]
# SCPI: STATus:QUEStionable:TEMPerature:ENABle value: EnableStruct = driver.status.questionable.temperature.enable.get()
These commands control the ENABle part of a register. The ENABle part allows true conditions in the EVENt part of the status register to bereported in the summary bit. If a bit is 1 in the enable register and its associated event bit transitions to true, a positive transition will occur in the summary bit reported to the next higher level.
- return
structure: for return value, see the help for EnableStruct structure arguments.
- set(summary_bit: int, channel_name: Optional[str] = None) None [source]
# SCPI: STATus:QUEStionable:TEMPerature:ENABle driver.status.questionable.temperature.enable.set(summary_bit = 1, channel_name = 'abc')
These commands control the ENABle part of a register. The ENABle part allows true conditions in the EVENt part of the status register to bereported in the summary bit. If a bit is 1 in the enable register and its associated event bit transitions to true, a positive transition will occur in the summary bit reported to the next higher level.
- param summary_bit
No help available
- param channel_name
String containing the name of the channel. The parameter is optional. If you omit it, the command works for the currently active channel.