from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal.RepeatedCapability import RepeatedCapability
from ......... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CwCls:
"""Cw commands group definition. 30 total commands, 18 Subgroups, 0 group commands
Repeated Capability: Codeword, default value after init: Codeword.Nr1"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("cw", core, parent)
self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_codeword_get', 'repcap_codeword_set', repcap.Codeword.Nr1)
def repcap_codeword_set(self, codeword: repcap.Codeword) -> 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 Codeword.Default
Default value after init: Codeword.Nr1"""
self._cmd_group.set_repcap_enum_value(codeword)
def repcap_codeword_get(self) -> repcap.Codeword:
"""Returns the current default repeated capability for the child set/get methods"""
# noinspection PyTypeChecker
return self._cmd_group.get_repcap_enum_value()
@property
def aoc(self):
"""aoc commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_aoc'):
from .Aoc import AocCls
self._aoc = AocCls(self._core, self._cmd_group)
return self._aoc
@property
def ccoding(self):
"""ccoding commands group. 4 Sub-classes, 0 commands."""
if not hasattr(self, '_ccoding'):
from .Ccoding import CcodingCls
self._ccoding = CcodingCls(self._core, self._cmd_group)
return self._ccoding
@property
def conflict(self):
"""conflict commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_conflict'):
from .Conflict import ConflictCls
self._conflict = ConflictCls(self._core, self._cmd_group)
return self._conflict
@property
def conType(self):
"""conType commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_conType'):
from .ConType import ConTypeCls
self._conType = ConTypeCls(self._core, self._cmd_group)
return self._conType
@property
def data(self):
"""data commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_data'):
from .Data import DataCls
self._data = DataCls(self._core, self._cmd_group)
return self._data
@property
def dselect(self):
"""dselect commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_dselect'):
from .Dselect import DselectCls
self._dselect = DselectCls(self._core, self._cmd_group)
return self._dselect
@property
def gap(self):
"""gap commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_gap'):
from .Gap import GapCls
self._gap = GapCls(self._core, self._cmd_group)
return self._gap
@property
def modulation(self):
"""modulation commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_modulation'):
from .Modulation import ModulationCls
self._modulation = ModulationCls(self._core, self._cmd_group)
return self._modulation
@property
def pattern(self):
"""pattern commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_pattern'):
from .Pattern import PatternCls
self._pattern = PatternCls(self._core, self._cmd_group)
return self._pattern
@property
def physBits(self):
"""physBits commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_physBits'):
from .PhysBits import PhysBitsCls
self._physBits = PhysBitsCls(self._core, self._cmd_group)
return self._physBits
@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 precoding(self):
"""precoding commands group. 9 Sub-classes, 0 commands."""
if not hasattr(self, '_precoding'):
from .Precoding import PrecodingCls
self._precoding = PrecodingCls(self._core, self._cmd_group)
return self._precoding
@property
def rbCount(self):
"""rbCount commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_rbCount'):
from .RbCount import RbCountCls
self._rbCount = RbCountCls(self._core, self._cmd_group)
return self._rbCount
@property
def rbOffset(self):
"""rbOffset commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_rbOffset'):
from .RbOffset import RbOffsetCls
self._rbOffset = RbOffsetCls(self._core, self._cmd_group)
return self._rbOffset
@property
def scrambling(self):
"""scrambling commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_scrambling'):
from .Scrambling import ScramblingCls
self._scrambling = ScramblingCls(self._core, self._cmd_group)
return self._scrambling
@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 symCount(self):
"""symCount commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_symCount'):
from .SymCount import SymCountCls
self._symCount = SymCountCls(self._core, self._cmd_group)
return self._symCount
@property
def symOffset(self):
"""symOffset commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_symOffset'):
from .SymOffset import SymOffsetCls
self._symOffset = SymOffsetCls(self._core, self._cmd_group)
return self._symOffset
def clone(self) -> 'CwCls':
"""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 = CwCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group