[docs]classBstationCls:"""Bstation commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("bstation",core,parent)
[docs]defget_catalog(self)->List[str]:"""SCPI: [SOURce<HW>]:BB:W3GPp:SETTing:TMODel:BSTation:CATalog \n Snippet: value: List[str] = driver.source.bb.w3Gpp.setting.tmodel.bstation.get_catalog() \n Queries the list of test models defined by the standard for the downlink. \n :return: catalog: string """response=self._core.io.query_str('SOURce<HwInstance>:BB:W3GPp:SETTing:TMODel:BSTation:CATalog?')returnConversions.str_to_str_list(response)
[docs]defget_value(self)->str:"""SCPI: [SOURce<HW>]:BB:W3GPp:SETTing:TMODel:BSTation \n Snippet: value: str = driver.source.bb.w3Gpp.setting.tmodel.bstation.get_value() \n Selects a standard test model for the downlink. \n :return: bstation: string """response=self._core.io.query_str('SOURce<HwInstance>:BB:W3GPp:SETTing:TMODel:BSTation?')returntrim_str_response(response)
[docs]defset_value(self,bstation:str)->None:"""SCPI: [SOURce<HW>]:BB:W3GPp:SETTing:TMODel:BSTation \n Snippet: driver.source.bb.w3Gpp.setting.tmodel.bstation.set_value(bstation = 'abc') \n Selects a standard test model for the downlink. \n :param bstation: string """param=Conversions.value_to_quoted_str(bstation)self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:SETTing:TMODel:BSTation {param}')