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

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 RepmpdcchCls: """Repmpdcch commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("repmpdcch", core, parent)
[docs] def set(self, max_rep_mpdcch: enums.EutraEmtcMpdcchNumRepetitions, 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>:REPMpdcch \n Snippet: driver.source.bb.eutra.downlink.user.epdcch.cell.set.repmpdcch.set(max_rep_mpdcch = enums.EutraEmtcMpdcchNumRepetitions._1, userIx = repcap.UserIx.Default, cellNull = repcap.CellNull.Default, setItem = repcap.SetItem.Default) \n Sets the maximum number the MPDCCH is repeated. \n :param max_rep_mpdcch: 1| 2| 4| 8| 16| 32| 64| 128| 256 :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.enum_scalar_to_str(max_rep_mpdcch, enums.EutraEmtcMpdcchNumRepetitions) 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}:REPMpdcch {param}')
# noinspection PyTypeChecker
[docs] def get(self, userIx=repcap.UserIx.Default, cellNull=repcap.CellNull.Default, setItem=repcap.SetItem.Default) -> enums.EutraEmtcMpdcchNumRepetitions: """SCPI: [SOURce<HW>]:BB:EUTRa:DL:USER<CH>:EPDCch:CELL<ST0>:SET<DIR>:REPMpdcch \n Snippet: value: enums.EutraEmtcMpdcchNumRepetitions = driver.source.bb.eutra.downlink.user.epdcch.cell.set.repmpdcch.get(userIx = repcap.UserIx.Default, cellNull = repcap.CellNull.Default, setItem = repcap.SetItem.Default) \n Sets the maximum number the MPDCCH is repeated. \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: max_rep_mpdcch: 1| 2| 4| 8| 16| 32| 64| 128| 256""" 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}:REPMpdcch?') return Conversions.str_to_scalar_enum(response, enums.EutraEmtcMpdcchNumRepetitions)