Source code for RsSmbv.Implementations.Source.Bb.C2K.Bstation.PdChannel.SubPacket.Toffset

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ToffsetCls: """Toffset commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("toffset", core, parent)
[docs] def set(self, toffset: int, baseStation=repcap.BaseStation.Default, subpacket=repcap.Subpacket.Default) -> None: """SCPI: [SOURce<HW>]:BB:C2K:BSTation<ST>:PDCHannel:SUBPacket<DI>:TOFFset \n Snippet: driver.source.bb.c2K.bstation.pdChannel.subPacket.toffset.set(toffset = 1, baseStation = repcap.BaseStation.Default, subpacket = repcap.Subpacket.Default) \n Sets start of the sub packet relative to the start of the packet interval. The offset is entered in slots. Sub packet 1 has offset 0. The value range for the individual subpackets depends on the settings of the other subpackets. The time slot offsets of the other sub packet have to be entered in ascending order. Also, two packets cannot be sent at the same time. In total the maximum value depends on the selected packet interval and the number of slots per sub packet as follows: Packet Interval/1.25 ms - Number of Slots per Subpacket. \n :param toffset: integer Range: 0 to max :param baseStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bstation') :param subpacket: optional repeated capability selector. Default value: Nr1 (settable in the interface 'SubPacket') """ param = Conversions.decimal_value_to_str(toffset) baseStation_cmd_val = self._cmd_group.get_repcap_cmd_value(baseStation, repcap.BaseStation) subpacket_cmd_val = self._cmd_group.get_repcap_cmd_value(subpacket, repcap.Subpacket) self._core.io.write(f'SOURce<HwInstance>:BB:C2K:BSTation{baseStation_cmd_val}:PDCHannel:SUBPacket{subpacket_cmd_val}:TOFFset {param}')
[docs] def get(self, baseStation=repcap.BaseStation.Default, subpacket=repcap.Subpacket.Default) -> int: """SCPI: [SOURce<HW>]:BB:C2K:BSTation<ST>:PDCHannel:SUBPacket<DI>:TOFFset \n Snippet: value: int = driver.source.bb.c2K.bstation.pdChannel.subPacket.toffset.get(baseStation = repcap.BaseStation.Default, subpacket = repcap.Subpacket.Default) \n Sets start of the sub packet relative to the start of the packet interval. The offset is entered in slots. Sub packet 1 has offset 0. The value range for the individual subpackets depends on the settings of the other subpackets. The time slot offsets of the other sub packet have to be entered in ascending order. Also, two packets cannot be sent at the same time. In total the maximum value depends on the selected packet interval and the number of slots per sub packet as follows: Packet Interval/1.25 ms - Number of Slots per Subpacket. \n :param baseStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bstation') :param subpacket: optional repeated capability selector. Default value: Nr1 (settable in the interface 'SubPacket') :return: toffset: integer Range: 0 to max""" baseStation_cmd_val = self._cmd_group.get_repcap_cmd_value(baseStation, repcap.BaseStation) subpacket_cmd_val = self._cmd_group.get_repcap_cmd_value(subpacket, repcap.Subpacket) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:C2K:BSTation{baseStation_cmd_val}:PDCHannel:SUBPacket{subpacket_cmd_val}:TOFFset?') return Conversions.str_to_int(response)