Error

SCPI Commands :

SYSTem:ERRor:ALL
SYSTem:ERRor:COUNt
class ErrorCls[source]

Error commands group definition. 4 total commands, 1 Subgroups, 2 group commands

class AllStruct[source]

Structure for reading output parameters. Fields:

  • Error_Number: int: No parameter help available

  • Error_Text: str: No parameter help available

get_all() AllStruct[source]
# SCPI: SYSTem:ERRor:ALL
value: AllStruct = driver.system.error.get_all()

Queries and deletes all entries in the error queue.

return:

structure: for return value, see the help for AllStruct structure arguments.

get_count() int[source]
# SCPI: SYSTem:ERRor:COUNt
value: int = driver.system.error.get_count()

Queries the number of entries in the error queue.

return:

error_count: integer

Cloning the Group

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

Subgroups