Coverload
SCPI Commands :
STATus:QUEStionable:COVerload:CONDition
STATus:QUEStionable:COVerload:ENABle
STATus:QUEStionable:COVerload[:EVENt]
STATus:QUEStionable:COVerload:NTRansition
STATus:QUEStionable:COVerload:PTRansition
- Commands in total: 5Subgroups: 0Direct child commands: 5
- get_condition() int[source]
# STATus:QUEStionable:COVerload:CONDition value: int = driver.status.questionable.coverload.get_condition()
Returns the contents of the CONDition part of the status register to check for questionable instrument or measurement states. Reading the CONDition registers does not delete the contents.
- get_enable() int[source]
# STATus:QUEStionable:COVerload:ENABle value: int = driver.status.questionable.coverload.get_enable()
Sets the ENABle part that allows true conditions in the EVENt part to be reported in the summary bit. If a bit is set to 1 in the enable part and its associated event bit transitions to true, a positive transition occurs in the summary bit and is reported to the next higher level.
- Returns:
value: Bit mask in decimal representation
- get_event() int[source]
# STATus:QUEStionable:COVerload[:EVENt] value: int = driver.status.questionable.coverload.get_event()
Returns the contents of the EVENt part of the status register to check whether an event has occurred since the last reading. Reading an EVENt register deletes its contents.
- get_ntransition() int[source]
# STATus:QUEStionable:COVerload:NTRansition value: int = driver.status.questionable.coverload.get_ntransition()
Sets the negative transition filter. If a bit is set, a 1 to 0 transition in the corresponding bit of the condition register causes a 1 to be written in the corresponding bit of the event register.
- Returns:
value: Bit mask in decimal representation
- get_ptransition() int[source]
# STATus:QUEStionable:COVerload:PTRansition value: int = driver.status.questionable.coverload.get_ptransition()
Sets the positive transition filter. If a bit is set, a 0 to 1 transition in the corresponding bit of the condition register causes a 1 to be written in the corresponding bit of the event register.
- Returns:
value: Bit mask in decimal representation
- set_enable(value: int) None[source]
# STATus:QUEStionable:COVerload:ENABle driver.status.questionable.coverload.set_enable(value = 1)
Sets the ENABle part that allows true conditions in the EVENt part to be reported in the summary bit. If a bit is set to 1 in the enable part and its associated event bit transitions to true, a positive transition occurs in the summary bit and is reported to the next higher level.
- Parameters:
value – Bit mask in decimal representation
- set_ntransition(value: int) None[source]
# STATus:QUEStionable:COVerload:NTRansition driver.status.questionable.coverload.set_ntransition(value = 1)
Sets the negative transition filter. If a bit is set, a 1 to 0 transition in the corresponding bit of the condition register causes a 1 to be written in the corresponding bit of the event register.
- Parameters:
value – Bit mask in decimal representation
- set_ptransition(value: int) None[source]
# STATus:QUEStionable:COVerload:PTRansition driver.status.questionable.coverload.set_ptransition(value = 1)
Sets the positive transition filter. If a bit is set, a 0 to 1 transition in the corresponding bit of the condition register causes a 1 to be written in the corresponding bit of the event register.
- Parameters:
value – Bit mask in decimal representation