Goverload

SCPI Commands :

STATus:QUEStionable:GOVerload:CONDition
STATus:QUEStionable:GOVerload:ENABle
STATus:QUEStionable:GOVerload[:EVENt]
STATus:QUEStionable:GOVerload:NTRansition
STATus:QUEStionable:GOVerload:PTRansition
Commands in total: 5
Subgroups: 0
Direct child commands: 5
get_condition() List[StatusQuestionGenerator][source]
# STATus:QUEStionable:GOVerload:CONDition
value: List[enums.StatusQuestionGenerator] = driver.status.questionable.goverload.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[StatusQuestionGenerator][source]
# STATus:QUEStionable:GOVerload:ENABle
value: List[enums.StatusQuestionGenerator] = driver.status.questionable.goverload.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[StatusQuestionGenerator][source]
# STATus:QUEStionable:GOVerload[:EVENt]
value: List[enums.StatusQuestionGenerator] = driver.status.questionable.goverload.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[StatusQuestionGenerator][source]
# STATus:QUEStionable:GOVerload:NTRansition
value: List[enums.StatusQuestionGenerator] = driver.status.questionable.goverload.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[StatusQuestionGenerator][source]
# STATus:QUEStionable:GOVerload:PTRansition
value: List[enums.StatusQuestionGenerator] = driver.status.questionable.goverload.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[StatusQuestionGenerator]) None[source]
# STATus:QUEStionable:GOVerload:ENABle
driver.status.questionable.goverload.set_enable(value = [StatusQuestionGenerator.WGENerator1, StatusQuestionGenerator.WGENerator8])

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[StatusQuestionGenerator]) None[source]
# STATus:QUEStionable:GOVerload:NTRansition
driver.status.questionable.goverload.set_ntransition(value = [StatusQuestionGenerator.WGENerator1, StatusQuestionGenerator.WGENerator8])

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[StatusQuestionGenerator]) None[source]
# STATus:QUEStionable:GOVerload:PTRansition
driver.status.questionable.goverload.set_ptransition(value = [StatusQuestionGenerator.WGENerator1, StatusQuestionGenerator.WGENerator8])

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