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 BmpLengthCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("bmpLength", core, parent)
[docs]
def set(self, bmp_length: enums.EutraSlV2xBmpLength, userEquipment=repcap.UserEquipment.Default) -> None:
"""
``[SOURce<HW>]:BB:EUTRa:UL:UE<ST>:SL:V2X:BMPLength`` \n
Snippet: ``driver.source.bb.eutra.uplink.ue.sl.v2X.bmpLength.set(bmp_length = enums.EutraSlV2xBmpLength._10, userEquipment = repcap.UserEquipment.Default)`` \n
Sets the bitmap length. To set the subframe bitmap, use the commands method
``RsSmw.source.bb.eutra.uplink.ue.sl.v2X.bitLow.set()`` and method
``RsSmw.source.bb.eutra.uplink.ue.sl.v2X.bitHigh.set()`` .
:param bmp_length: 10 | 16 | 20 | 30 | 40 | 50 | 60 | 100
:param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue')
"""
param = Conversions.enum_scalar_to_str(bmp_length, enums.EutraSlV2xBmpLength)
userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment)
self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:UE{userEquipment_cmd_val}:SL:V2X:BMPLength {param}')
# noinspection PyTypeChecker
[docs]
def get(self, userEquipment=repcap.UserEquipment.Default) -> enums.EutraSlV2xBmpLength:
"""
``[SOURce<HW>]:BB:EUTRa:UL:UE<ST>:SL:V2X:BMPLength`` \n
Snippet: ``value: enums.EutraSlV2xBmpLength = driver.source.bb.eutra.uplink.ue.sl.v2X.bmpLength.get(userEquipment = repcap.UserEquipment.Default)`` \n
Sets the bitmap length. To set the subframe bitmap, use the commands method
``RsSmw.source.bb.eutra.uplink.ue.sl.v2X.bitLow.set()`` and method
``RsSmw.source.bb.eutra.uplink.ue.sl.v2X.bitHigh.set()`` .
:param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue')
:return: bmp_length: 10 | 16 | 20 | 30 | 40 | 50 | 60 | 100
"""
userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:UL:UE{userEquipment_cmd_val}:SL:V2X:BMPLength?')
return Conversions.str_to_scalar_enum(response, enums.EutraSlV2xBmpLength)