Source code for RsSmbv.Implementations.Source.Bb.W3Gpp.Mstation.Enhanced.Dpdch.Tchannel.TbSize

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class TbSizeCls: """TbSize commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("tbSize", core, parent)
[docs] def set(self, tb_size: int, transportChannelNull=repcap.TransportChannelNull.Default) -> None: """SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ENHanced:DPDCh:TCHannel<DI0>:TBSize \n Snippet: driver.source.bb.w3Gpp.mstation.enhanced.dpdch.tchannel.tbSize.set(tb_size = 1, transportChannelNull = repcap.TransportChannelNull.Default) \n Sets the size of the data blocks. \n :param tb_size: integer :param transportChannelNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Tchannel') """ param = Conversions.decimal_value_to_str(tb_size) transportChannelNull_cmd_val = self._cmd_group.get_repcap_cmd_value(transportChannelNull, repcap.TransportChannelNull) self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:MSTation:ENHanced:DPDCh:TCHannel{transportChannelNull_cmd_val}:TBSize {param}')
[docs] def get(self, transportChannelNull=repcap.TransportChannelNull.Default) -> int: """SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ENHanced:DPDCh:TCHannel<DI0>:TBSize \n Snippet: value: int = driver.source.bb.w3Gpp.mstation.enhanced.dpdch.tchannel.tbSize.get(transportChannelNull = repcap.TransportChannelNull.Default) \n Sets the size of the data blocks. \n :param transportChannelNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Tchannel') :return: tb_size: integer""" transportChannelNull_cmd_val = self._cmd_group.get_repcap_cmd_value(transportChannelNull, repcap.TransportChannelNull) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:W3GPp:MSTation:ENHanced:DPDCh:TCHannel{transportChannelNull_cmd_val}:TBSize?') return Conversions.str_to_int(response)