Source code for RsSmbv.Implementations.Source.Bb.Gnss.Svid.Gps.Mpath.V.A.Echo

from ...........Internal.Core import Core
from ...........Internal.CommandsGroup import CommandsGroup
from ...........Internal.RepeatedCapability import RepeatedCapability
from ........... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class EchoCls: """Echo commands group definition. 7 total commands, 7 Subgroups, 0 group commands Repeated Capability: Echo, default value after init: Echo.Nr1""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("echo", core, parent) self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_echo_get', 'repcap_echo_set', repcap.Echo.Nr1) def repcap_echo_set(self, echo: repcap.Echo) -> None: """Repeated Capability default value numeric suffix. This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to Echo.Default Default value after init: Echo.Nr1""" self._cmd_group.set_repcap_enum_value(echo) def repcap_echo_get(self) -> repcap.Echo: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._cmd_group.get_repcap_enum_value() @property def aazimuth(self): """aazimuth commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_aazimuth'): from .Aazimuth import AazimuthCls self._aazimuth = AazimuthCls(self._core, self._cmd_group) return self._aazimuth @property def aelevation(self): """aelevation commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_aelevation'): from .Aelevation import AelevationCls self._aelevation = AelevationCls(self._core, self._cmd_group) return self._aelevation @property def cpDrift(self): """cpDrift commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_cpDrift'): from .CpDrift import CpDriftCls self._cpDrift = CpDriftCls(self._core, self._cmd_group) return self._cpDrift @property def cphase(self): """cphase commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_cphase'): from .Cphase import CphaseCls self._cphase = CphaseCls(self._core, self._cmd_group) return self._cphase @property def dshift(self): """dshift commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_dshift'): from .Dshift import DshiftCls self._dshift = DshiftCls(self._core, self._cmd_group) return self._dshift @property def icPhase(self): """icPhase commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_icPhase'): from .IcPhase import IcPhaseCls self._icPhase = IcPhaseCls(self._core, self._cmd_group) return self._icPhase @property def power(self): """power commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_power'): from .Power import PowerCls self._power = PowerCls(self._core, self._cmd_group) return self._power def clone(self) -> 'EchoCls': """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 = EchoCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group