Source code for RsCma.Implementations.Configure.AfRf.Measurement.MultiEval.Tones

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class TonesCls: """Tones commands group definition. 38 total commands, 11 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("tones", core, parent) @property def voip(self): """voip commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_voip'): from .Voip import VoipCls self._voip = VoipCls(self._core, self._cmd_group) return self._voip @property def spdifRight(self): """spdifRight commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_spdifRight'): from .SpdifRight import SpdifRightCls self._spdifRight = SpdifRightCls(self._core, self._cmd_group) return self._spdifRight @property def spdifLeft(self): """spdifLeft commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_spdifLeft'): from .SpdifLeft import SpdifLeftCls self._spdifLeft = SpdifLeftCls(self._core, self._cmd_group) return self._spdifLeft @property def audioInput(self): """audioInput commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_audioInput'): from .AudioInput import AudioInputCls self._audioInput = AudioInputCls(self._core, self._cmd_group) return self._audioInput @property def demodulation(self): """demodulation commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_demodulation'): from .Demodulation import DemodulationCls self._demodulation = DemodulationCls(self._core, self._cmd_group) return self._demodulation @property def dcs(self): """dcs commands group. 1 Sub-classes, 2 commands.""" if not hasattr(self, '_dcs'): from .Dcs import DcsCls self._dcs = DcsCls(self._core, self._cmd_group) return self._dcs @property def dialing(self): """dialing commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_dialing'): from .Dialing import DialingCls self._dialing = DialingCls(self._core, self._cmd_group) return self._dialing @property def selCall(self): """selCall commands group. 2 Sub-classes, 5 commands.""" if not hasattr(self, '_selCall'): from .SelCall import SelCallCls self._selCall = SelCallCls(self._core, self._cmd_group) return self._selCall @property def fdialing(self): """fdialing commands group. 1 Sub-classes, 6 commands.""" if not hasattr(self, '_fdialing'): from .Fdialing import FdialingCls self._fdialing = FdialingCls(self._core, self._cmd_group) return self._fdialing @property def dtmf(self): """dtmf commands group. 2 Sub-classes, 2 commands.""" if not hasattr(self, '_dtmf'): from .Dtmf import DtmfCls self._dtmf = DtmfCls(self._core, self._cmd_group) return self._dtmf @property def scal(self): """scal commands group. 2 Sub-classes, 2 commands.""" if not hasattr(self, '_scal'): from .Scal import ScalCls self._scal = ScalCls(self._core, self._cmd_group) return self._scal def clone(self) -> 'TonesCls': """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 = TonesCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group