Questionable

SCPI Commands :

STATus:QUEStionable:CONDition
STATus:QUEStionable:ENABle
STATus:QUEStionable:NTRansition
STATus:QUEStionable:PTRansition
STATus:QUEStionable:[EVENt]
class QuestionableCls[source]

Questionable commands group definition. 10 total commands, 1 Subgroups, 5 group commands

get_condition() str[source]
# SCPI: STATus:QUEStionable:CONDition
value: str = driver.status.questionable.get_condition()

Queries the content of the CONDition part of the STATus:QUEStionable register. This part contains information on the action currently being performed in the instrument. The content is not deleted after being read out since it indicates the current hardware status.

return:

condition: string

get_enable() str[source]
# SCPI: STATus:QUEStionable:ENABle
value: str = driver.status.questionable.get_enable()

Sets the bits of the ENABle part of the STATus:QUEStionable register. The enable part determines which events of the STATus:EVENt part are enabled 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 correesponding EVENt bit is true, a positive transition occurs in the summary bit. This transition is reportet to the next higher level.

return:

enable: string

get_event() str[source]
# SCPI: STATus:QUEStionable:[EVENt]
value: str = driver.status.questionable.get_event()

Queries the content of the EVENt part of the method RsAreg.Status.Questionable.event register. This part contains information on the actions performed in the instrument since the last readout. The content of the EVENt part is deleted after being read out.

return:

value: No help available

get_ntransition() str[source]
# SCPI: STATus:QUEStionable:NTRansition
value: str = driver.status.questionable.get_ntransition()

Sets the bits of the NTRansition part of the STATus:QUEStionable register. If a bit is set, a transition from 1 to 0 in the condition part causes an entry to be made in the EVENt part of the register.

return:

ntransition: string

get_ptransition() str[source]
# SCPI: STATus:QUEStionable:PTRansition
value: str = driver.status.questionable.get_ptransition()

Sets the bits of the NTRansition part of the STATus:QUEStionable register. If a bit is set, a transition from 1 to 0 in the condition part causes an entry to be made in the EVENt part of the register.

return:

ptransition: string

set_condition(condition: str) None[source]
# SCPI: STATus:QUEStionable:CONDition
driver.status.questionable.set_condition(condition = 'abc')

Queries the content of the CONDition part of the STATus:QUEStionable register. This part contains information on the action currently being performed in the instrument. The content is not deleted after being read out since it indicates the current hardware status.

param condition:

string

set_enable(enable: str) None[source]
# SCPI: STATus:QUEStionable:ENABle
driver.status.questionable.set_enable(enable = 'abc')

Sets the bits of the ENABle part of the STATus:QUEStionable register. The enable part determines which events of the STATus:EVENt part are enabled 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 correesponding EVENt bit is true, a positive transition occurs in the summary bit. This transition is reportet to the next higher level.

param enable:

string

set_event(value: str) None[source]
# SCPI: STATus:QUEStionable:[EVENt]
driver.status.questionable.set_event(value = 'abc')

Queries the content of the EVENt part of the method RsAreg.Status.Questionable.event register. This part contains information on the actions performed in the instrument since the last readout. The content of the EVENt part is deleted after being read out.

param value:

string

set_ntransition(ntransition: str) None[source]
# SCPI: STATus:QUEStionable:NTRansition
driver.status.questionable.set_ntransition(ntransition = 'abc')

Sets the bits of the NTRansition part of the STATus:QUEStionable register. If a bit is set, a transition from 1 to 0 in the condition part causes an entry to be made in the EVENt part of the register.

param ntransition:

string

set_ptransition(ptransition: str) None[source]
# SCPI: STATus:QUEStionable:PTRansition
driver.status.questionable.set_ptransition(ptransition = 'abc')

Sets the bits of the NTRansition part of the STATus:QUEStionable register. If a bit is set, a transition from 1 to 0 in the condition part causes an entry to be made in the EVENt part of the register.

param ptransition:

string

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.status.questionable.clone()

Subgroups