Questionable

SCPI Commands :

STATus:QUEStionable:CONDition
STATus:QUEStionable:ENABle
STATus:QUEStionable:NTRansition
STATus:QUEStionable:PTRansition
STATus:QUEStionable:[EVENt]
Commands in total: 10
Subgroups: 1
Direct child commands: 5
get_condition() str[source]
# 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.

Returns:

condition: string

get_enable() str[source]
# 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.

Returns:

enable: string

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

Queries the content of the EVENt part of the method RsSmw.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.

get_ntransition() str[source]
# 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.

Returns:

ntransition: string

get_ptransition() str[source]
# 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.

Returns:

ptransition: string

set_condition(condition: str) None[source]
# 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.

Parameters:

condition – string

set_enable(enable: str) None[source]
# 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.

Parameters:

enable – string

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

Queries the content of the EVENt part of the method RsSmw.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.

set_ntransition(ntransition: str) None[source]
# 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.

Parameters:

ntransition – string

set_ptransition(ptransition: str) None[source]
# 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.

Parameters:

ptransition – string

Cloning the Group

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

Subgroups