Source code for RsCma.Implementations.Configure.AfRf.Measurement.Digital.Sync.Timeout

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal.Types import DataType
from .......Internal.StructBase import StructBase
from .......Internal.ArgStruct import ArgStruct
from .......Internal.ArgSingleList import ArgSingleList
from .......Internal.ArgSingle import ArgSingle


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class TimeoutCls: """Timeout commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("timeout", core, parent)
[docs] def set(self, enable: bool, timeout: float) -> None: """SCPI: CONFigure:AFRF:MEASurement<Instance>:DIGital:SYNC:TOUT \n Snippet: driver.configure.afRf.measurement.digital.sync.timeout.set(enable = False, timeout = 1.0) \n Synchronizes the timeout after a defined period. \n :param enable: OFF | ON :param timeout: Unit: s """ param = ArgSingleList().compose_cmd_string(ArgSingle('enable', enable, DataType.Boolean), ArgSingle('timeout', timeout, DataType.Float)) self._core.io.write(f'CONFigure:AFRF:MEASurement<Instance>:DIGital:SYNC:TOUT {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class TimeoutStruct(StructBase): """Response structure. Fields: \n - Enable: bool: OFF | ON - Timeout: float: Unit: s""" __meta_args_list = [ ArgStruct.scalar_bool('Enable'), ArgStruct.scalar_float('Timeout')] def __init__(self): StructBase.__init__(self, self) self.Enable: bool = None self.Timeout: float = None
[docs] def get(self) -> TimeoutStruct: """SCPI: CONFigure:AFRF:MEASurement<Instance>:DIGital:SYNC:TOUT \n Snippet: value: TimeoutStruct = driver.configure.afRf.measurement.digital.sync.timeout.get() \n Synchronizes the timeout after a defined period. \n :return: structure: for return value, see the help for TimeoutStruct structure arguments.""" return self._core.io.query_struct(f'CONFigure:AFRF:MEASurement<Instance>:DIGital:SYNC:TOUT?', self.__class__.TimeoutStruct())