from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal import Conversions
from .........Internal.RepeatedCapability import RepeatedCapability
from ......... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RowCls:
"""Row commands group definition. 1 total commands, 0 Subgroups, 1 group commands
Repeated Capability: Row, default value after init: Row.Nr1"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("row", core, parent)
self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_row_get', 'repcap_row_set', repcap.Row.Nr1)
def repcap_row_set(self, row: repcap.Row) -> 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 Row.Default
Default value after init: Row.Nr1"""
self._cmd_group.set_repcap_enum_value(row)
def repcap_row_get(self) -> repcap.Row:
"""Returns the current default repeated capability for the child set/get methods"""
# noinspection PyTypeChecker
return self._cmd_group.get_repcap_enum_value()
[docs] def set(self, ant_port_map_dat: float, antennaPortNull=repcap.AntennaPortNull.Default, row=repcap.Row.Default) -> None:
"""SCPI: [SOURce<HW>]:BB:V5G:DL:APM:CS:AP<DIR0>:ROW<ST0> \n
Snippet: driver.source.bb.v5G.downlink.apm.cs.ap.row.set(ant_port_map_dat = 1.0, antennaPortNull = repcap.AntennaPortNull.Default, row = repcap.Row.Default) \n
Defines the mapping of the logical antenna ports (AP0 to AP7) to the available physical TX antennas (basebands) for and
BRS signals. Row (ROW0 to ROW7) defines the baseband and at the same time also the cell. \n
:param ant_port_map_dat: 0| 1| OFF| ON
:param antennaPortNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Ap')
:param row: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Row')
"""
param = Conversions.decimal_value_to_str(ant_port_map_dat)
antennaPortNull_cmd_val = self._cmd_group.get_repcap_cmd_value(antennaPortNull, repcap.AntennaPortNull)
row_cmd_val = self._cmd_group.get_repcap_cmd_value(row, repcap.Row)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:DL:APM:CS:AP{antennaPortNull_cmd_val}:ROW{row_cmd_val} {param}')
[docs] def get(self, antennaPortNull=repcap.AntennaPortNull.Default, row=repcap.Row.Default) -> float:
"""SCPI: [SOURce<HW>]:BB:V5G:DL:APM:CS:AP<DIR0>:ROW<ST0> \n
Snippet: value: float = driver.source.bb.v5G.downlink.apm.cs.ap.row.get(antennaPortNull = repcap.AntennaPortNull.Default, row = repcap.Row.Default) \n
Defines the mapping of the logical antenna ports (AP0 to AP7) to the available physical TX antennas (basebands) for and
BRS signals. Row (ROW0 to ROW7) defines the baseband and at the same time also the cell. \n
:param antennaPortNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Ap')
:param row: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Row')
:return: ant_port_map_dat: 0| 1| OFF| ON"""
antennaPortNull_cmd_val = self._cmd_group.get_repcap_cmd_value(antennaPortNull, repcap.AntennaPortNull)
row_cmd_val = self._cmd_group.get_repcap_cmd_value(row, repcap.Row)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:V5G:DL:APM:CS:AP{antennaPortNull_cmd_val}:ROW{row_cmd_val}?')
return Conversions.str_to_float(response)
def clone(self) -> 'RowCls':
"""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 = RowCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group