from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal.RepeatedCapability import RepeatedCapability
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PacketCls:
"""Packet commands group definition. 13 total commands, 11 Subgroups, 0 group commands
Repeated Capability: Packet, default value after init: Packet.Nr1"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("packet", core, parent)
self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_packet_get', 'repcap_packet_set', repcap.Packet.Nr1)
def repcap_packet_set(self, packet: repcap.Packet) -> 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 Packet.Default
Default value after init: Packet.Nr1"""
self._cmd_group.set_repcap_enum_value(packet)
def repcap_packet_get(self) -> repcap.Packet:
"""Returns the current default repeated capability for the child set/get methods"""
# noinspection PyTypeChecker
return self._cmd_group.get_repcap_enum_value()
@property
def ccoding(self):
"""ccoding commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_ccoding'):
from .Ccoding import CcodingCls
self._ccoding = CcodingCls(self._core, self._cmd_group)
return self._ccoding
@property
def count(self):
"""count commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_count'):
from .Count import CountCls
self._count = CountCls(self._core, self._cmd_group)
return self._count
@property
def data(self):
"""data commands group. 2 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 drate(self):
"""drate commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_drate'):
from .Drate import DrateCls
self._drate = DrateCls(self._core, self._cmd_group)
return self._drate
@property
def fcs(self):
"""fcs commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_fcs'):
from .Fcs import FcsCls
self._fcs = FcsCls(self._core, self._cmd_group)
return self._fcs
@property
def gain(self):
"""gain commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_gain'):
from .Gain import GainCls
self._gain = GainCls(self._core, self._cmd_group)
return self._gain
@property
def infinite(self):
"""infinite commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_infinite'):
from .Infinite import InfiniteCls
self._infinite = InfiniteCls(self._core, self._cmd_group)
return self._infinite
@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 psize(self):
"""psize commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_psize'):
from .Psize import PsizeCls
self._psize = PsizeCls(self._core, self._cmd_group)
return self._psize
@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 subPackets(self):
"""subPackets commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_subPackets'):
from .SubPackets import SubPacketsCls
self._subPackets = SubPacketsCls(self._core, self._cmd_group)
return self._subPackets
def clone(self) -> 'PacketCls':
"""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 = PacketCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group