from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import enums
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class RmaxCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("rmax", core, parent)
[docs]
def set(self, max_rep_npdcch: enums.EutraNbiotRmAx, userIx=repcap.UserIx.Default) -> None:
"""
``[SOURce<HW>]:BB:EUTRa:DL:USER<CH>:NIOT:RMAX`` \n
Snippet: ``driver.source.bb.eutra.downlink.user.niot.rmax.set(max_rep_npdcch = enums.EutraNbiotRmAx.R1, userIx = repcap.UserIx.Default)`` \n
Sets the maximum number NPDCCH is repeated RMax.
:param max_rep_npdcch: R1 | R2 | R4 | R8 | R16 | R32 | R64 | R128 | R256 | R512 | R1024 | R2048
:param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User')
"""
param = Conversions.enum_scalar_to_str(max_rep_npdcch, enums.EutraNbiotRmAx)
userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx)
self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:USER{userIx_cmd_val}:NIOT:RMAX {param}')
# noinspection PyTypeChecker
[docs]
def get(self, userIx=repcap.UserIx.Default) -> enums.EutraNbiotRmAx:
"""
``[SOURce<HW>]:BB:EUTRa:DL:USER<CH>:NIOT:RMAX`` \n
Snippet: ``value: enums.EutraNbiotRmAx = driver.source.bb.eutra.downlink.user.niot.rmax.get(userIx = repcap.UserIx.Default)`` \n
Sets the maximum number NPDCCH is repeated RMax.
:param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User')
:return: max_rep_npdcch: R1 | R2 | R4 | R8 | R16 | R32 | R64 | R128 | R256 | R512 | R1024 | R2048
"""
userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:DL:USER{userIx_cmd_val}:NIOT:RMAX?')
return Conversions.str_to_scalar_enum(response, enums.EutraNbiotRmAx)