[docs]classTgplCls:"""Tgpl commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("tgpl",core,parent)
[docs]defset(self,tgpl:int,baseStation=repcap.BaseStation.Default,patternIx=repcap.PatternIx.Default)->None:"""SCPI: [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. \n :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]defget(self,baseStation=repcap.BaseStation.Default,patternIx=repcap.PatternIx.Default)->int:"""SCPI: [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. \n :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?')returnConversions.str_to_int(response)