Source code for RsSmw.Implementations.Source.Bb.V5G.Uplink.Ue.Cell.Xpusch.Dselect

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DselectCls: """Dselect commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("dselect", core, parent)
[docs] def set(self, filename: str, userEquipment=repcap.UserEquipment.Default, cellNull=repcap.CellNull.Default) -> None: """SCPI: [SOURce<HW>]:BB:V5G:UL:UE<ST>:[CELL<CCIDX>]:XPUSch:DSELect \n Snippet: driver.source.bb.v5G.uplink.ue.cell.xpusch.dselect.set(filename = 'abc', userEquipment = repcap.UserEquipment.Default, cellNull = repcap.CellNull.Default) \n Specifies data list file. The setting is relevant for [:SOURce<hw>]:BB:V5G:UL:UE<st>[:CELL<ccidx>]:XPUSch:DATADLISt \n :param filename: string :param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue') :param cellNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Cell') """ param = Conversions.value_to_quoted_str(filename) userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment) cellNull_cmd_val = self._cmd_group.get_repcap_cmd_value(cellNull, repcap.CellNull) self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:UE{userEquipment_cmd_val}:CELL{cellNull_cmd_val}:XPUSch:DSELect {param}')
[docs] def get(self, userEquipment=repcap.UserEquipment.Default, cellNull=repcap.CellNull.Default) -> str: """SCPI: [SOURce<HW>]:BB:V5G:UL:UE<ST>:[CELL<CCIDX>]:XPUSch:DSELect \n Snippet: value: str = driver.source.bb.v5G.uplink.ue.cell.xpusch.dselect.get(userEquipment = repcap.UserEquipment.Default, cellNull = repcap.CellNull.Default) \n Specifies data list file. The setting is relevant for [:SOURce<hw>]:BB:V5G:UL:UE<st>[:CELL<ccidx>]:XPUSch:DATADLISt \n :param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue') :param cellNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Cell') :return: filename: string""" userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment) cellNull_cmd_val = self._cmd_group.get_repcap_cmd_value(cellNull, repcap.CellNull) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:V5G:UL:UE{userEquipment_cmd_val}:CELL{cellNull_cmd_val}:XPUSch:DSELect?') return trim_str_response(response)