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

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RbCountCls: """RbCount commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("rbCount", core, parent)
[docs] def set(self, res_block_count: int, 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>]:RBCount \n Snippet: driver.source.bb.eutra.downlink.subf.alloc.cw.rbCount.set(res_block_count = 1, subframeNull = repcap.SubframeNull.Default, allocationNull = repcap.AllocationNull.Default, codeword = repcap.Codeword.Default) \n Sets the size of the selected allocation in resource blocks (per slot) . For allocations with two codewords, the number of resource blocks for the second codeword is automatically set to the number of resource blocks set for the first one. \n :param res_block_count: integer AUTO Indicates automatically calculated value depending on other settings Range: 1 to 110 :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.decimal_value_to_str(res_block_count) 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}:RBCount {param}')
[docs] def get(self, subframeNull=repcap.SubframeNull.Default, allocationNull=repcap.AllocationNull.Default, codeword=repcap.Codeword.Default) -> int: """SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ALLoc<CH0>:[CW<USER>]:RBCount \n Snippet: value: int = driver.source.bb.eutra.downlink.subf.alloc.cw.rbCount.get(subframeNull = repcap.SubframeNull.Default, allocationNull = repcap.AllocationNull.Default, codeword = repcap.Codeword.Default) \n Sets the size of the selected allocation in resource blocks (per slot) . For allocations with two codewords, the number of resource blocks for the second codeword is automatically set to the number of resource blocks set for the first one. \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: res_block_count: integer AUTO Indicates automatically calculated value depending on other settings Range: 1 to 110""" 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}:RBCount?') return Conversions.str_to_int(response)