[docs]classSgidCls:"""Sgid commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("sgid",core,parent)
[docs]defset(self,sgid:enums.GbasSsid,vdbTransmitter=repcap.VdbTransmitter.Default)->None:"""SCPI: [SOURce<HW>]:BB:GBAS:VDB<CH>:SGID \n Snippet: driver.source.bb.gbas.vdb.sgid.set(sgid = enums.GbasSsid.A, vdbTransmitter = repcap.VdbTransmitter.Default) \n Sets the Station Slot Identifier SSID of the ground station. \n :param sgid: A| B| C| D| E| F| G| H :param vdbTransmitter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Vdb') """param=Conversions.enum_scalar_to_str(sgid,enums.GbasSsid)vdbTransmitter_cmd_val=self._cmd_group.get_repcap_cmd_value(vdbTransmitter,repcap.VdbTransmitter)self._core.io.write(f'SOURce<HwInstance>:BB:GBAS:VDB{vdbTransmitter_cmd_val}:SGID {param}')
# noinspection PyTypeChecker
[docs]defget(self,vdbTransmitter=repcap.VdbTransmitter.Default)->enums.GbasSsid:"""SCPI: [SOURce<HW>]:BB:GBAS:VDB<CH>:SGID \n Snippet: value: enums.GbasSsid = driver.source.bb.gbas.vdb.sgid.get(vdbTransmitter = repcap.VdbTransmitter.Default) \n Sets the Station Slot Identifier SSID of the ground station. \n :param vdbTransmitter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Vdb') :return: sgid: No help available"""vdbTransmitter_cmd_val=self._cmd_group.get_repcap_cmd_value(vdbTransmitter,repcap.VdbTransmitter)response=self._core.io.query_str(f'SOURce<HwInstance>:BB:GBAS:VDB{vdbTransmitter_cmd_val}:SGID?')returnConversions.str_to_scalar_enum(response,enums.GbasSsid)