Source code for RsSmbv.Implementations.Source.Bb.Eutra.Downlink.User.Epdcch.Cell.Set.Stnb

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StnbCls: """Stnb commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("stnb", core, parent)
[docs] def set(self, starting_nb: int, userIx=repcap.UserIx.Default, cellNull=repcap.CellNull.Default, setItem=repcap.SetItem.Default) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:DL:USER<CH>:EPDCch:CELL<ST0>:SET<DIR>:STNB \n Snippet: driver.source.bb.eutra.downlink.user.epdcch.cell.set.stnb.set(starting_nb = 1, userIx = repcap.UserIx.Default, cellNull = repcap.CellNull.Default, setItem = repcap.SetItem.Default) \n Sets the first narrowbands in which MPDCCH is allocated. \n :param starting_nb: integer Range: 0 to 15 :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :param cellNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Cell') :param setItem: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Set') """ param = Conversions.decimal_value_to_str(starting_nb) userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) cellNull_cmd_val = self._cmd_group.get_repcap_cmd_value(cellNull, repcap.CellNull) setItem_cmd_val = self._cmd_group.get_repcap_cmd_value(setItem, repcap.SetItem) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:USER{userIx_cmd_val}:EPDCch:CELL{cellNull_cmd_val}:SET{setItem_cmd_val}:STNB {param}')
[docs] def get(self, userIx=repcap.UserIx.Default, cellNull=repcap.CellNull.Default, setItem=repcap.SetItem.Default) -> int: """SCPI: [SOURce<HW>]:BB:EUTRa:DL:USER<CH>:EPDCch:CELL<ST0>:SET<DIR>:STNB \n Snippet: value: int = driver.source.bb.eutra.downlink.user.epdcch.cell.set.stnb.get(userIx = repcap.UserIx.Default, cellNull = repcap.CellNull.Default, setItem = repcap.SetItem.Default) \n Sets the first narrowbands in which MPDCCH is allocated. \n :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :param cellNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Cell') :param setItem: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Set') :return: starting_nb: integer Range: 0 to 15""" userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) cellNull_cmd_val = self._cmd_group.get_repcap_cmd_value(cellNull, repcap.CellNull) setItem_cmd_val = self._cmd_group.get_repcap_cmd_value(setItem, repcap.SetItem) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:DL:USER{userIx_cmd_val}:EPDCch:CELL{cellNull_cmd_val}:SET{setItem_cmd_val}:STNB?') return Conversions.str_to_int(response)