[docs]classUlistCls:"""Ulist commands group definition. 4 total commands, 2 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("ulist",core,parent)@propertydefcatalog(self):"""catalog commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_catalog'):from.CatalogimportCatalogClsself._catalog=CatalogCls(self._core,self._cmd_group)returnself._catalog@propertydefstore(self):"""store commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_store'):from.StoreimportStoreClsself._store=StoreCls(self._core,self._cmd_group)returnself._store
[docs]defdelete(self,filename:str,frameIx=repcap.FrameIx.Default)->None:"""SCPI: [SOURce<HW>]:BB:GSM:FRAMe<DI>:ULISt:DELete \n Snippet: driver.source.bb.gsm.frame.ulist.delete(filename = 'abc', frameIx = repcap.FrameIx.Default) \n This command deletes the selected file with user defined frame settings. The directory is set using command method RsSmbv. MassMemory.currentDirectory. A path can also be specified, in which case the files in the specified directory are read. The file extension can be omitted. Only files with the file extension *.gsm_fu and *.gsm_hfu are deleted. \n :param filename: string :param frameIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Frame') """param=Conversions.value_to_quoted_str(filename)frameIx_cmd_val=self._cmd_group.get_repcap_cmd_value(frameIx,repcap.FrameIx)self._core.io.write(f'SOURce<HwInstance>:BB:GSM:FRAMe{frameIx_cmd_val}:ULISt:DELete {param}')
[docs]defload(self,filename:str,frameIx=repcap.FrameIx.Default)->None:"""SCPI: [SOURce<HW>]:BB:GSM:FRAMe<DI>:ULISt:LOAD \n Snippet: driver.source.bb.gsm.frame.ulist.load(filename = 'abc', frameIx = repcap.FrameIx.Default) \n This command loads the selected file with user defined frame settings. The directory is set using command method RsSmbv. MassMemory.currentDirectory. A path can also be specified, in which case the files in the specified directory are read. The file extension can be omitted. Only files with the file extension *.gsm_fu and *.gsm_hfu are loaded. \n :param filename: string :param frameIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Frame') """param=Conversions.value_to_quoted_str(filename)frameIx_cmd_val=self._cmd_group.get_repcap_cmd_value(frameIx,repcap.FrameIx)self._core.io.write(f'SOURce<HwInstance>:BB:GSM:FRAMe{frameIx_cmd_val}:ULISt:LOAD {param}')
defclone(self)->'UlistCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=UlistCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group