from ..........Internal.Core import Core
from ..........Internal.CommandsGroup import CommandsGroup
from ..........Internal import Conversions
from ..........Internal.RepeatedCapability import RepeatedCapability
from .......... import enums
from .......... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ApCls:
"""Ap commands group definition. 3 total commands, 1 Subgroups, 1 group commands
Repeated Capability: AntennaPortNull, default value after init: AntennaPortNull.Nr0"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("ap", core, parent)
self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_antennaPortNull_get', 'repcap_antennaPortNull_set', repcap.AntennaPortNull.Nr0)
def repcap_antennaPortNull_set(self, antennaPortNull: repcap.AntennaPortNull) -> 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 AntennaPortNull.Default
Default value after init: AntennaPortNull.Nr0"""
self._cmd_group.set_repcap_enum_value(antennaPortNull)
def repcap_antennaPortNull_get(self) -> repcap.AntennaPortNull:
"""Returns the current default repeated capability for the child set/get methods"""
# noinspection PyTypeChecker
return self._cmd_group.get_repcap_enum_value()
@property
def bb(self):
"""bb commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_bb'):
from .Bb import BbCls
self._bb = BbCls(self._core, self._cmd_group)
return self._bb
# noinspection PyTypeChecker
[docs] def get(self, allocationNull=repcap.AllocationNull.Default) -> enums.EutraBfaNtSetEmtc:
"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:EMTC:ALLoc<CH0>:PRECoding:AP \n
Snippet: value: enums.EutraBfaNtSetEmtc = driver.source.bb.eutra.downlink.emtc.alloc.precoding.ap.get(allocationNull = repcap.AllocationNull.Default) \n
Queries the used antenna ports. \n
:param allocationNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Alloc')
:return: ant_ports: AP7| AP5| AP8| AP78| AP79| AP710| AP711| AP712| AP713| AP714| AP107| AP108| AP109| AP110| AP107108| AP107109"""
allocationNull_cmd_val = self._cmd_group.get_repcap_cmd_value(allocationNull, repcap.AllocationNull)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:DL:EMTC:ALLoc{allocationNull_cmd_val}:PRECoding:AP?')
return Conversions.str_to_scalar_enum(response, enums.EutraBfaNtSetEmtc)
def clone(self) -> 'ApCls':
"""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 = ApCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group