Status

SCPI Commands :

SYSTem:HELP:STATus:BITS
SYSTem:HELP:STATus[:REGister]
class StatusCls[source]

Status commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_bits() List[str][source]
# SCPI: SYSTem:HELP:STATus:BITS
value: List[str] = driver.system.help.status.get_bits()

Returns a list of paths for the bits of the STATus:OPERation registers at the lowest level of the hierarchy.

return:

bits: string Comma-separated list of strings, one string per path The string for a path contains all registers from highest to lowest level separated by colons. Example: ‘STATus:OPERation:TASK:A:GPRF:MEASurement:POWer:OFF’

get_register() List[str][source]
# SCPI: SYSTem:HELP:STATus[:REGister]
value: List[str] = driver.system.help.status.get_register()

Returns a list of paths for the STATus:OPERation registers.

return:

register: string Comma-separated list of strings, one string per path The string for a path contains all registers from highest level down to the individual register, separated by colons. For the GPRF power measurement, for example, the following paths are listed: ‘STATus:OPERation’, ‘STATus:OPERation:TASK’, ‘STATus:OPERation:TASK:A’, ‘STATus:OPERation:TASK:A:GPRF’, ‘STATus:OPERation:TASK:A:GPRF:MEASurement’, ‘STATus:OPERation:TASK:A:GPRF:MEASurement:POWer’