Source code for RsSmw.Implementations.Source.Bb.Oneweb.Uplink.Ue

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class UeCls: """Ue commands group definition. 54 total commands, 8 Subgroups, 0 group commands Repeated Capability: UserEquipment, default value after init: UserEquipment.Nr1""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ue", core, parent) self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_userEquipment_get', 'repcap_userEquipment_set', repcap.UserEquipment.Nr1) def repcap_userEquipment_set(self, userEquipment: repcap.UserEquipment) -> 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 UserEquipment.Default Default value after init: UserEquipment.Nr1""" self._cmd_group.set_repcap_enum_value(userEquipment) def repcap_userEquipment_get(self) -> repcap.UserEquipment: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._cmd_group.get_repcap_enum_value() @property def conSubFrames(self): """conSubFrames commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_conSubFrames'): from .ConSubFrames import ConSubFramesCls self._conSubFrames = ConSubFramesCls(self._core, self._cmd_group) return self._conSubFrames @property def id(self): """id commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_id'): from .Id import IdCls self._id = IdCls(self._core, self._cmd_group) return self._id @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 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 @property def prach(self): """prach commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_prach'): from .Prach import PrachCls self._prach = PrachCls(self._core, self._cmd_group) return self._prach @property def release(self): """release commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_release'): from .Release import ReleaseCls self._release = ReleaseCls(self._core, self._cmd_group) return self._release @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 @property def cell(self): """cell commands group. 4 Sub-classes, 0 commands.""" if not hasattr(self, '_cell'): from .Cell import CellCls self._cell = CellCls(self._core, self._cmd_group) return self._cell def clone(self) -> 'UeCls': """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 = UeCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group