Source code for RsSmbv.Implementations.Source.Bb.Eutra.Downlink.Subf.Alloc.Cw.Precoding.Ap

from ..........Internal.Core import Core
from ..........Internal.CommandsGroup import CommandsGroup
from ..........Internal import Conversions
from .......... import enums
from .......... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ApCls: """Ap commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ap", core, parent)
[docs] def set(self, antenna_ports: enums.EutraBfaNtSet, subframeNull=repcap.SubframeNull.Default, allocationNull=repcap.AllocationNull.Default, codeword=repcap.Codeword.Default) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ALLoc<CH0>:[CW<USER>]:PRECoding:AP \n Snippet: driver.source.bb.eutra.downlink.subf.alloc.cw.precoding.ap.set(antenna_ports = enums.EutraBfaNtSet.AP107, subframeNull = repcap.SubframeNull.Default, allocationNull = repcap.AllocationNull.Default, codeword = repcap.Codeword.Default) \n Sets the antenna port(s) for the selected transmission mode. \n :param antenna_ports: AP7| AP5| AP8| AP78| AP79| AP710| AP711| AP712| AP713| AP714| AP107| AP108| AP109| AP110| AP107108| AP107109| AP11| AP13| AP1113 | AP7| AP5| AP8| AP78| AP79| AP710| AP711| AP712| AP713| AP714 | AP11| AP13| AP1113| AP107| AP108| AP109| AP110| AP107108| AP107109 Antenna port or antenna ports combination; the designation AP78 for example means AP7 and AP8 :param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf') :param allocationNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Alloc') :param codeword: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cw') """ param = Conversions.enum_scalar_to_str(antenna_ports, enums.EutraBfaNtSet) subframeNull_cmd_val = self._cmd_group.get_repcap_cmd_value(subframeNull, repcap.SubframeNull) allocationNull_cmd_val = self._cmd_group.get_repcap_cmd_value(allocationNull, repcap.AllocationNull) codeword_cmd_val = self._cmd_group.get_repcap_cmd_value(codeword, repcap.Codeword) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ALLoc{allocationNull_cmd_val}:CW{codeword_cmd_val}:PRECoding:AP {param}')
# noinspection PyTypeChecker
[docs] def get(self, subframeNull=repcap.SubframeNull.Default, allocationNull=repcap.AllocationNull.Default, codeword=repcap.Codeword.Default) -> enums.EutraBfaNtSet: """SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ALLoc<CH0>:[CW<USER>]:PRECoding:AP \n Snippet: value: enums.EutraBfaNtSet = driver.source.bb.eutra.downlink.subf.alloc.cw.precoding.ap.get(subframeNull = repcap.SubframeNull.Default, allocationNull = repcap.AllocationNull.Default, codeword = repcap.Codeword.Default) \n Sets the antenna port(s) for the selected transmission mode. \n :param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf') :param allocationNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Alloc') :param codeword: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cw') :return: antenna_ports: AP7| AP5| AP8| AP78| AP79| AP710| AP711| AP712| AP713| AP714| AP107| AP108| AP109| AP110| AP107108| AP107109| AP11| AP13| AP1113 | AP7| AP5| AP8| AP78| AP79| AP710| AP711| AP712| AP713| AP714 | AP11| AP13| AP1113| AP107| AP108| AP109| AP110| AP107108| AP107109 Antenna port or antenna ports combination; the designation AP78 for example means AP7 and AP8""" subframeNull_cmd_val = self._cmd_group.get_repcap_cmd_value(subframeNull, repcap.SubframeNull) allocationNull_cmd_val = self._cmd_group.get_repcap_cmd_value(allocationNull, repcap.AllocationNull) codeword_cmd_val = self._cmd_group.get_repcap_cmd_value(codeword, repcap.Codeword) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ALLoc{allocationNull_cmd_val}:CW{codeword_cmd_val}:PRECoding:AP?') return Conversions.str_to_scalar_enum(response, enums.EutraBfaNtSet)