[docs]classSettingCls:"""Setting commands group definition. 4 total commands, 0 Subgroups, 4 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("setting",core,parent)
[docs]defget_catalog(self)->List[str]:"""SCPI: [SOURce<HW>]:BB:WLNN:SETTing:CATalog \n Snippet: value: List[str] = driver.source.bb.wlnn.setting.get_catalog() \n Reads out the files with IEEE 802.11a/b/g/n/ac settings in the default directory. The default directory is set using command method RsSmw.MassMemory.currentDirectory. Only files with the file extension *.wlann will be listed. \n :return: catalog: string """response=self._core.io.query_str('SOURce<HwInstance>:BB:WLNN:SETTing:CATalog?')returnConversions.str_to_str_list(response)
[docs]defdelete(self,filename:str)->None:"""SCPI: [SOURce<HW>]:BB:WLNN:SETTing:DELete \n Snippet: driver.source.bb.wlnn.setting.delete(filename = 'abc') \n Deletes the selected file with IIEEE 802.11a/b/g/n/ac settings. The directory is set using command method RsSmw. MassMemory.currentDirectory. A path can also be specified, in which case the files in the specified directory are read. The file extension may be omitted. Only files with the file extension *.wlann are listed and can be deleted. \n :param filename: string """param=Conversions.value_to_quoted_str(filename)self._core.io.write(f'SOURce<HwInstance>:BB:WLNN:SETTing:DELete {param}')
[docs]defload(self,filename:str)->None:"""SCPI: [SOURce<HW>]:BB:WLNN:SETTing:LOAD \n Snippet: driver.source.bb.wlnn.setting.load(filename = 'abc') \n Loads the selected file with IEEE 802.11 WLAN settings. The directory is set using command method RsSmw.MassMemory. currentDirectory. A path can also be specified, in which case the files in the specified directory are read. The file extension may be omitted. Only files with the file extension *.wlann will be loaded. \n :param filename: string """param=Conversions.value_to_quoted_str(filename)self._core.io.write(f'SOURce<HwInstance>:BB:WLNN:SETTing:LOAD {param}')
[docs]defset_store(self,filename:str)->None:"""SCPI: [SOURce<HW>]:BB:WLNN:SETTing:STORe \n Snippet: driver.source.bb.wlnn.setting.set_store(filename = 'abc') \n Saves the current IEEE 802.11a/b/g/n/ac settings into the selected file. The directory is set using command method RsSmw. MassMemory.currentDirectory. A path can also be specified, in which case the files in the specified directory are read. Only the file name has to be entered. IEEE 802.11a/b/g/n/ac/ax settings are saved as files with file extension *.wlann. \n :param filename: string """param=Conversions.value_to_quoted_str(filename)self._core.io.write(f'SOURce<HwInstance>:BB:WLNN:SETTing:STORe {param}')