Source code for RsSmbv.Implementations.Source.Bb.Tdscdma.Down.Cell.Enh.Dch.Hsdpa.Tbs.Table

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 TableCls: """Table commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("table", core, parent)
[docs] def set(self, table: enums.TdscdmaEnhHsTbsTableDn, cell=repcap.Cell.Default) -> None: """SCPI: [SOURce<HW>]:BB:TDSCdma:DOWN:CELL<ST>:ENH:DCH:HSDPA:TBS:TABLe \n Snippet: driver.source.bb.tdscdma.down.cell.enh.dch.hsdpa.tbs.table.set(table = enums.TdscdmaEnhHsTbsTableDn.C10TO12, cell = repcap.Cell.Default) \n Sets the transport block size table, according to the specification 3GPP TS 25.321. \n :param table: C1TO3| C4TO6| C10TO12| C7TO9| C13TO15| C16TO18| C19TO21| C22TO24 :param cell: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cell') """ param = Conversions.enum_scalar_to_str(table, enums.TdscdmaEnhHsTbsTableDn) cell_cmd_val = self._cmd_group.get_repcap_cmd_value(cell, repcap.Cell) self._core.io.write(f'SOURce<HwInstance>:BB:TDSCdma:DOWN:CELL{cell_cmd_val}:ENH:DCH:HSDPA:TBS:TABLe {param}')
# noinspection PyTypeChecker
[docs] def get(self, cell=repcap.Cell.Default) -> enums.TdscdmaEnhHsTbsTableDn: """SCPI: [SOURce<HW>]:BB:TDSCdma:DOWN:CELL<ST>:ENH:DCH:HSDPA:TBS:TABLe \n Snippet: value: enums.TdscdmaEnhHsTbsTableDn = driver.source.bb.tdscdma.down.cell.enh.dch.hsdpa.tbs.table.get(cell = repcap.Cell.Default) \n Sets the transport block size table, according to the specification 3GPP TS 25.321. \n :param cell: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cell') :return: table: C1TO3| C4TO6| C10TO12| C7TO9| C13TO15| C16TO18| C19TO21| C22TO24""" cell_cmd_val = self._cmd_group.get_repcap_cmd_value(cell, repcap.Cell) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:TDSCdma:DOWN:CELL{cell_cmd_val}:ENH:DCH:HSDPA:TBS:TABLe?') return Conversions.str_to_scalar_enum(response, enums.TdscdmaEnhHsTbsTableDn)