Code

SCPI Commands :

SYSTem:ERRor:CODE:ALL
SYSTem:ERRor:CODE[:NEXT]
class CodeCls[source]

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

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

Queries and deletes all entries in the error queue.

return:

error_code: integer Comma-separated list of error numbers. The error descriptions are not returned. Positive error numbers are instrument-specific. Negative error numbers are reserved by the SCPI standard.

get_next() int[source]
# SCPI: SYSTem:ERRor:CODE[:NEXT]
value: int = driver.system.error.code.get_next()

Queries and deletes the oldest entry in the error queue.

return:

error: integer Only the error number is returned, not the error description. Positive error numbers are instrument-specific. Negative error numbers are reserved by the SCPI standard.