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 ModeCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("mode", core, parent)
# noinspection PyTypeChecker
[docs]
def get(self, userEquipment=repcap.UserEquipment.Default) -> enums.UeMode:
"""
``[SOURce<HW>]:BB:V5G:UL:UE<ST>:MODE`` \n
Snippet: ``value: enums.UeMode = driver.source.bb.v5G.uplink.ue.mode.get(userEquipment = repcap.UserEquipment.Default)`` \n
Indicates whether the user equipment is in standard or in PRACH mode.
:param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue')
:return: mode: STD | PRACh
"""
userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:V5G:UL:UE{userEquipment_cmd_val}:MODE?')
return Conversions.str_to_scalar_enum(response, enums.UeMode)