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() List[StatusQuestionCoverload][source]
# STATus:QUEStionable:COVerload:CONDition value: List[enums.StatusQuestionCoverload] = 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. This part contains information on the action currently being performed in the instrument. Reading the CONDition registers does not delete the contents since it indicates the current hardware status.
- Returns:
value: bit dependent, comma-separated values
- get_enable() List[StatusQuestionCoverload][source]
# STATus:QUEStionable:COVerload:ENABle value: List[enums.StatusQuestionCoverload] = driver.status.questionable.coverload.get_enable()
Sets the ENABle part that allows true conditions in the EVENt part to be reported for the summary bit in the status byte. These events can be used for a service request. If a bit in the ENABle part is 1, and the corresponding EVENt bit is true, a positive transition occurs in the summary bit. This transition is reported to the next higher level. See Table ‘Source values for STATus:QUEStionable:…:[:EVENt] and STATus:QUEStionable:…:[:ENABLe]’ for a list of the return values.
- Returns:
value: bit dependent, comma-separated values
- get_event() List[StatusQuestionCoverload][source]
# STATus:QUEStionable:COVerload[:EVENt] value: List[enums.StatusQuestionCoverload] = driver.status.questionable.coverload.get_event()
Returns the contents of the EVENt part of the status register to check if an event has occurred since the last reading. Reading an EVENt register deletes its contents.
- Returns:
value: bit dependent, comma-separated values
- get_ntransition() List[StatusQuestionCoverload][source]
# STATus:QUEStionable:COVerload:NTRansition value: List[enums.StatusQuestionCoverload] = driver.status.questionable.coverload.get_ntransition()
Sets the negative transition filter. If a bit is set, a transition from 1 to 0 in the condition part causes an entry to be made in the corresponding bit of the EVENt part of the register.
- Returns:
value: Source dependent, comma-separated values
- get_ptransition() List[StatusQuestionCoverload][source]
# STATus:QUEStionable:COVerload:PTRansition value: List[enums.StatusQuestionCoverload] = driver.status.questionable.coverload.get_ptransition()
Sets the positive transition filter. If a bit is set, a transition from 0 to 1 in the condition part causes an entry to be made in the corresponding bit of the EVENt part of the register.
- Returns:
value: Source dependent, comma-separated values
- set_enable(value: List[StatusQuestionCoverload]) None[source]
# STATus:QUEStionable:COVerload:ENABle driver.status.questionable.coverload.set_enable(value = [StatusQuestionCoverload.CHANnel1, StatusQuestionCoverload.WCHannel8])
Sets the ENABle part that allows true conditions in the EVENt part to be reported for the summary bit in the status byte. These events can be used for a service request. If a bit in the ENABle part is 1, and the corresponding EVENt bit is true, a positive transition occurs in the summary bit. This transition is reported to the next higher level. See Table ‘Source values for STATus:QUEStionable:…:[:EVENt] and STATus:QUEStionable:…:[:ENABLe]’ for a list of the return values.
- Parameters:
value – bit dependent, comma-separated values
- set_ntransition(value: List[StatusQuestionCoverload]) None[source]
# STATus:QUEStionable:COVerload:NTRansition driver.status.questionable.coverload.set_ntransition(value = [StatusQuestionCoverload.CHANnel1, StatusQuestionCoverload.WCHannel8])
Sets the negative transition filter. If a bit is set, a transition from 1 to 0 in the condition part causes an entry to be made in the corresponding bit of the EVENt part of the register.
- Parameters:
value – Source dependent, comma-separated values
- set_ptransition(value: List[StatusQuestionCoverload]) None[source]
# STATus:QUEStionable:COVerload:PTRansition driver.status.questionable.coverload.set_ptransition(value = [StatusQuestionCoverload.CHANnel1, StatusQuestionCoverload.WCHannel8])
Sets the positive transition filter. If a bit is set, a transition from 0 to 1 in the condition part causes an entry to be made in the corresponding bit of the EVENt part of the register.
- Parameters:
value – Source dependent, comma-separated values