[docs]classNulSymbolsCls:"""NulSymbols commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("nulSymbols",core,parent)
[docs]defget(self,output=repcap.Output.Default)->int:"""SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:OUTPut<CH>:SSC:NULSymbols \n Snippet: value: int = driver.source.bb.nr5G.trigger.output.ssc.nulSymbols.get(output = repcap.Output.Default) \n Defines the number of uplink symbols in a special slot that contains a marker. INTRO_CMD_HELP: Prerequisites to define the number of downlink symbols: \n - Enter uplink mode ([:SOURce<hw>]:BB:NR5G:LINK) . - Turn off usage of special slot format ([:SOURce<hw>]:BB:NR5G:TRIGger:OUTPut<ch>:SSC:SFI:STATe) . Otherwise, the command is a query only. \n :param output: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Output') :return: ul_symbols: No help available"""output_cmd_val=self._cmd_group.get_repcap_cmd_value(output,repcap.Output)response=self._core.io.query_str(f'SOURce<HwInstance>:BB:NR5G:TRIGger:OUTPut{output_cmd_val}:SSC:NULSymbols?')returnConversions.str_to_int(response)