Source code for RsCMPX_Base.Implementations.System.Error

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
from ....Internal.StructBase import StructBase
from ....Internal.ArgStruct import ArgStruct


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class ErrorCls: """Error commands group definition. 4 total commands, 1 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("error", core, parent) @property def code(self): """code commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_code'): from .Code import CodeCls self._code = CodeCls(self._core, self._cmd_group) return self._code # noinspection PyTypeChecker
[docs] class AllStruct(StructBase): # From ReadStructDefinition CmdPropertyTemplate.xml """Structure for reading output parameters. Fields: \n - Error_Number: int: No parameter help available - Error_Text: str: No parameter help available""" __meta_args_list = [ ArgStruct.scalar_int('Error_Number'), ArgStruct.scalar_str('Error_Text')] def __init__(self): StructBase.__init__(self, self) self.Error_Number: int = None self.Error_Text: str = None
[docs] def get_all(self) -> AllStruct: """SCPI: SYSTem:ERRor:ALL \n Snippet: value: AllStruct = driver.system.error.get_all() \n Queries and deletes all entries in the error queue. \n :return: structure: for return value, see the help for AllStruct structure arguments. """ return self._core.io.query_struct('SYSTem:ERRor:ALL?', self.__class__.AllStruct())
[docs] def get_count(self) -> int: """SCPI: SYSTem:ERRor:COUNt \n Snippet: value: int = driver.system.error.get_count() \n Queries the number of entries in the error queue. \n :return: error_count: No help available """ response = self._core.io.query_str('SYSTem:ERRor:COUNt?') return Conversions.str_to_int(response)
def clone(self) -> 'ErrorCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = ErrorCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group