Source code for RsSmbv.Implementations.Source.Bb.Gnss.Awgn.Rf

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RfCls: """Rf commands group definition. 10 total commands, 7 Subgroups, 0 group commands Repeated Capability: Path, default value after init: Path.Nr1""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("rf", core, parent) self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_path_get', 'repcap_path_set', repcap.Path.Nr1) def repcap_path_set(self, path: repcap.Path) -> 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 Path.Default Default value after init: Path.Nr1""" self._cmd_group.set_repcap_enum_value(path) def repcap_path_get(self) -> repcap.Path: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._cmd_group.get_repcap_enum_value() @property def bandwidth(self): """bandwidth commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_bandwidth'): from .Bandwidth import BandwidthCls self._bandwidth = BandwidthCls(self._core, self._cmd_group) return self._bandwidth @property def cndRatio(self): """cndRatio commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_cndRatio'): from .CndRatio import CndRatioCls self._cndRatio = CndRatioCls(self._core, self._cmd_group) return self._cndRatio @property def config(self): """config commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_config'): from .Config import ConfigCls self._config = ConfigCls(self._core, self._cmd_group) return self._config @property def frequency(self): """frequency commands group. 4 Sub-classes, 0 commands.""" if not hasattr(self, '_frequency'): from .Frequency import FrequencyCls self._frequency = FrequencyCls(self._core, self._cmd_group) return self._frequency @property def jsRatio(self): """jsRatio commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_jsRatio'): from .JsRatio import JsRatioCls self._jsRatio = JsRatioCls(self._core, self._cmd_group) return self._jsRatio @property def mode(self): """mode commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_mode'): from .Mode import ModeCls self._mode = ModeCls(self._core, self._cmd_group) return self._mode @property def state(self): """state commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_state'): from .State import StateCls self._state = StateCls(self._core, self._cmd_group) return self._state def clone(self) -> 'RfCls': """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 = RfCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group