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() str[source]
# SCPI: SYSTem:ERRor:CODE:ALL value: str = driver.system.error.code.get_all()
Queries the error numbers of all entries in the error queue and then deletes them.
- return:
all_py: Returns the error numbers. To retrieve the entire error text, send the command method RsAreg800.System.Error.all. - 0: ‘No error’, i.e. the error queue is empty - Positive value: Positive error numbers denote device-specific errors - Negative value: Negative error numbers denote error messages defined by SCPI.
- get_next() str[source]
# SCPI: SYSTem:ERRor:CODE:[NEXT] value: str = driver.system.error.code.get_next()
Queries the error number of the oldest entry in the error queue and then deletes it.
- return:
next_py: Returns the error number. To retrieve the entire error text, send the command method RsAreg800.System.Error.all. - 0: ‘No error’, i.e. the error queue is empty - Positive value: Positive error numbers denote device-specific errors - Negative value: Negative error numbers denote error messages defined by SCPI.