Source code for RsCmwWlanMeas.Implementations.Tmode

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class TmodeCls: """Tmode commands group definition. 5 total commands, 2 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("tmode", core, parent) @property def data(self): """data commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_data'): from .Data import DataCls self._data = DataCls(self._core, self._cmd_group) return self._data @property def antenna(self): """antenna commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_antenna'): from .Antenna import AntennaCls self._antenna = AntennaCls(self._core, self._cmd_group) return self._antenna
[docs] def abort(self, opc_timeout_ms: int = -1) -> None: """SCPI: ABORt:WLAN:MEASurement<Instance>:TMODe \n Snippet: driver.tmode.abort() \n Aborts the current MIMO training data acquisition. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'ABORt:WLAN:MEASurement<Instance>:TMODe', opc_timeout_ms)
def clone(self) -> 'TmodeCls': """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 = TmodeCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group