Source code for RsSmw.Implementations.Source.Bb.W3Gpp.Bstation.Cmode.Pattern.Tgpl

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


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

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

[docs] def set(self, tgpl: int, baseStation=repcap.BaseStation.Default, patternIx=repcap.PatternIx.Default) -> None: """ ``[SOURce<HW>]:BB:W3GPp:BSTation<ST>:CMODe:PATTern<CH>:TGPL`` \n Snippet: ``driver.source.bb.w3Gpp.bstation.cmode.pattern.tgpl.set(tgpl = 1, baseStation = repcap.BaseStation.Default, patternIx = repcap.PatternIx.Default)`` \n The command sets the transmission gap pattern lengths. Setting 0 is available only for pattern 2. The transmission gap pattern length of the user equipment with the same suffix as the selected base station is set to the same value. :param tgpl: integer Range: 0 to 100 :param baseStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bstation') :param patternIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Pattern') """ param = Conversions.decimal_value_to_str(tgpl) baseStation_cmd_val = self._cmd_group.get_repcap_cmd_value(baseStation, repcap.BaseStation) patternIx_cmd_val = self._cmd_group.get_repcap_cmd_value(patternIx, repcap.PatternIx) self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:BSTation{baseStation_cmd_val}:CMODe:PATTern{patternIx_cmd_val}:TGPL {param}')
[docs] def get(self, baseStation=repcap.BaseStation.Default, patternIx=repcap.PatternIx.Default) -> int: """ ``[SOURce<HW>]:BB:W3GPp:BSTation<ST>:CMODe:PATTern<CH>:TGPL`` \n Snippet: ``value: int = driver.source.bb.w3Gpp.bstation.cmode.pattern.tgpl.get(baseStation = repcap.BaseStation.Default, patternIx = repcap.PatternIx.Default)`` \n The command sets the transmission gap pattern lengths. Setting 0 is available only for pattern 2. The transmission gap pattern length of the user equipment with the same suffix as the selected base station is set to the same value. :param baseStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bstation') :param patternIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Pattern') :return: tgpl: integer Range: 0 to 100 """ baseStation_cmd_val = self._cmd_group.get_repcap_cmd_value(baseStation, repcap.BaseStation) patternIx_cmd_val = self._cmd_group.get_repcap_cmd_value(patternIx, repcap.PatternIx) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:W3GPp:BSTation{baseStation_cmd_val}:CMODe:PATTern{patternIx_cmd_val}:TGPL?') return Conversions.str_to_int(response)