Source code for RsCmwCdma2kSig.Implementations.RxQuality_.Tdata

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Tdata: """Tdata commands group definition. 9 total commands, 2 Sub-groups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("tdata", core, parent) @property def ferfCh(self): """ferfCh commands group. 1 Sub-classes, 3 commands.""" if not hasattr(self, '_ferfCh'): from .Tdata_.FerfCh import FerfCh self._ferfCh = FerfCh(self._core, self._base) return self._ferfCh @property def fersCh(self): """fersCh commands group. 1 Sub-classes, 3 commands.""" if not hasattr(self, '_fersCh'): from .Tdata_.FersCh import FersCh self._fersCh = FersCh(self._core, self._base) return self._fersCh def clone(self) -> 'Tdata': """Clones the group by creating new object from it and its whole existing sub-groups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = Tdata(self._core, self._base.parent) self._base.synchronize_repcaps(new_group) return new_group