from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PuschCls:
"""Pusch commands group definition. 16 total commands, 9 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("pusch", core, parent)
@property
def ccoding(self):
"""ccoding commands group. 6 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 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 initPattern(self):
"""initPattern commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_initPattern'):
from .InitPattern import InitPatternCls
self._initPattern = InitPatternCls(self._core, self._cmd_group)
return self._initPattern
@property
def naPort(self):
"""naPort commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_naPort'):
from .NaPort import NaPortCls
self._naPort = NaPortCls(self._core, self._cmd_group)
return self._naPort
@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 scrambling(self):
"""scrambling commands group. 1 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 txMode(self):
"""txMode commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_txMode'):
from .TxMode import TxModeCls
self._txMode = TxModeCls(self._core, self._cmd_group)
return self._txMode
@property
def uppts(self):
"""uppts commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_uppts'):
from .Uppts import UpptsCls
self._uppts = UpptsCls(self._core, self._cmd_group)
return self._uppts
def clone(self) -> 'PuschCls':
"""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 = PuschCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group