Source code for RsCMPX_Base.Implementations.System.Error.Code

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class CodeCls: """Code commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("code", core, parent)
[docs] def get_all(self) -> int: """SCPI: SYSTem:ERRor:CODE:ALL \n Snippet: value: int = driver.system.error.code.get_all() \n Queries and deletes all entries in the error queue. \n :return: error_code: 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. """ response = self._core.io.query_str('SYSTem:ERRor:CODE:ALL?') return Conversions.str_to_int(response)
[docs] def get_next(self) -> int: """SCPI: SYSTem:ERRor:CODE[:NEXT] \n Snippet: value: int = driver.system.error.code.get_next() \n Queries and deletes the oldest entry in the error queue. \n :return: error: 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. """ response = self._core.io.query_str('SYSTem:ERRor:CODE:NEXT?') return Conversions.str_to_int(response)