Source code for RsFsw.Implementations.Applications.K10x_Lte.Configure.Lte.Downlink.Cc.Subframe.Alloc.Precoding.ClMapping

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 ClMappingCls: """ClMapping commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("clMapping", core, parent)
[docs] def set(self, mapping: enums.LayerMappingDl, carrierComponent=repcap.CarrierComponent.Default, subframe=repcap.Subframe.Default, allocation=repcap.Allocation.Default) -> None: """SCPI: CONFigure[:LTE]:DL[:CC<cc>]:SUBFrame<sf>:ALLoc<al>:PRECoding:CLMapping \n Snippet: driver.applications.k10Xlte.configure.lte.downlink.cc.subframe.alloc.precoding.clMapping.set(mapping = enums.LayerMappingDl.LC11, carrierComponent = repcap.CarrierComponent.Default, subframe = repcap.Subframe.Default, allocation = repcap.Allocation.Default) \n Selects the codeword to layer mapping. \n :param mapping: LC11 | LC21 | LC22 | LC31 | LC32 | LC41 | LC42 | LC52 | LC62 | LC72 | LC82 :param carrierComponent: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cc') :param subframe: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subframe') :param allocation: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Alloc') """ param = Conversions.enum_scalar_to_str(mapping, enums.LayerMappingDl) carrierComponent_cmd_val = self._cmd_group.get_repcap_cmd_value(carrierComponent, repcap.CarrierComponent) subframe_cmd_val = self._cmd_group.get_repcap_cmd_value(subframe, repcap.Subframe) allocation_cmd_val = self._cmd_group.get_repcap_cmd_value(allocation, repcap.Allocation) self._core.io.write(f'CONFigure:LTE:DL:CC{carrierComponent_cmd_val}:SUBFrame{subframe_cmd_val}:ALLoc{allocation_cmd_val}:PRECoding:CLMapping {param}')
# noinspection PyTypeChecker
[docs] def get(self, carrierComponent=repcap.CarrierComponent.Default, subframe=repcap.Subframe.Default, allocation=repcap.Allocation.Default) -> enums.LayerMappingDl: """SCPI: CONFigure[:LTE]:DL[:CC<cc>]:SUBFrame<sf>:ALLoc<al>:PRECoding:CLMapping \n Snippet: value: enums.LayerMappingDl = driver.applications.k10Xlte.configure.lte.downlink.cc.subframe.alloc.precoding.clMapping.get(carrierComponent = repcap.CarrierComponent.Default, subframe = repcap.Subframe.Default, allocation = repcap.Allocation.Default) \n Selects the codeword to layer mapping. \n :param carrierComponent: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cc') :param subframe: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subframe') :param allocation: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Alloc') :return: mapping: LC11 | LC21 | LC22 | LC31 | LC32 | LC41 | LC42 | LC52 | LC62 | LC72 | LC82""" carrierComponent_cmd_val = self._cmd_group.get_repcap_cmd_value(carrierComponent, repcap.CarrierComponent) subframe_cmd_val = self._cmd_group.get_repcap_cmd_value(subframe, repcap.Subframe) allocation_cmd_val = self._cmd_group.get_repcap_cmd_value(allocation, repcap.Allocation) response = self._core.io.query_str(f'CONFigure:LTE:DL:CC{carrierComponent_cmd_val}:SUBFrame{subframe_cmd_val}:ALLoc{allocation_cmd_val}:PRECoding:CLMapping?') return Conversions.str_to_scalar_enum(response, enums.LayerMappingDl)