Source code for RsSmw.Implementations.Source.Bb.C2K.Bstation.PdChannel.Pinterval

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class PintervalCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("pinterval", core, parent)

[docs] def set(self, pinterval: float, baseStation=repcap.BaseStation.Default) -> None: """ ``[SOURce<HW>]:BB:C2K:BSTation<ST>:PDCHannel:PINTerval`` \n Snippet: ``driver.source.bb.c2K.bstation.pdChannel.pinterval.set(pinterval = 1.0, baseStation = repcap.BaseStation.Default)`` \n The command sets the interval between two data packets for F-PDCH. The range depends on the ARB settings sequence length (BB:C2K:SLENgth) . The values 80 ms, 40 ms, 20 ms, 10 ms and 5 ms can always be set, and the maximum value is 2000 ms. All intermediate values must satisfy the condition: Sequence Length * 80ms/2^n, where n is a whole number. :param pinterval: float Range: 5 ms to 2000 ms :param baseStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bstation') """ param = Conversions.decimal_value_to_str(pinterval) baseStation_cmd_val = self._cmd_group.get_repcap_cmd_value(baseStation, repcap.BaseStation) self._core.io.write(f'SOURce<HwInstance>:BB:C2K:BSTation{baseStation_cmd_val}:PDCHannel:PINTerval {param}')
[docs] def get(self, baseStation=repcap.BaseStation.Default) -> float: """ ``[SOURce<HW>]:BB:C2K:BSTation<ST>:PDCHannel:PINTerval`` \n Snippet: ``value: float = driver.source.bb.c2K.bstation.pdChannel.pinterval.get(baseStation = repcap.BaseStation.Default)`` \n The command sets the interval between two data packets for F-PDCH. The range depends on the ARB settings sequence length (BB:C2K:SLENgth) . The values 80 ms, 40 ms, 20 ms, 10 ms and 5 ms can always be set, and the maximum value is 2000 ms. All intermediate values must satisfy the condition: Sequence Length * 80ms/2^n, where n is a whole number. :param baseStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bstation') :return: pinterval: float Range: 5 ms to 2000 ms """ baseStation_cmd_val = self._cmd_group.get_repcap_cmd_value(baseStation, repcap.BaseStation) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:C2K:BSTation{baseStation_cmd_val}:PDCHannel:PINTerval?') return Conversions.str_to_float(response)