[docs]classGalileoCls:"""Galileo commands group definition. 5 total commands, 2 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("galileo",core,parent)@propertydefexecute(self):"""execute commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_execute'):from.ExecuteimportExecuteClsself._execute=ExecuteCls(self._core,self._cmd_group)returnself._execute@propertydeffile(self):"""file commands group. 0 Sub-classes, 2 commands."""ifnothasattr(self,'_file'):from.FileimportFileClsself._file=FileCls(self._core,self._cmd_group)returnself._file
[docs]defget_uall(self)->bool:"""SCPI: [SOURce<HW>]:BB:GNSS:SV:IMPort:GALileo:UALL \n Snippet: value: bool = driver.source.bb.gnss.sv.importPy.galileo.get_uall() \n No command help available \n :return: use_to_all_systems: 1| ON| 0| OFF """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SV:IMPort:GALileo:UALL?')returnConversions.str_to_bool(response)
[docs]defset_uall(self,use_to_all_systems:bool)->None:"""SCPI: [SOURce<HW>]:BB:GNSS:SV:IMPort:GALileo:UALL \n Snippet: driver.source.bb.gnss.sv.importPy.galileo.set_uall(use_to_all_systems = False) \n No command help available \n :param use_to_all_systems: 1| ON| 0| OFF """param=Conversions.bool_to_str(use_to_all_systems)self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SV:IMPort:GALileo:UALL {param}')
[docs]defget_ud_source(self)->bool:"""SCPI: [SOURce<HW>]:BB:GNSS:SV:IMPort:GALileo:UDSource \n Snippet: value: bool = driver.source.bb.gnss.sv.importPy.galileo.get_ud_source() \n Enables loading the dedicated files as source for the navigation data. \n :return: use_diff_src_state: 1| ON| 0| OFF """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SV:IMPort:GALileo:UDSource?')returnConversions.str_to_bool(response)
[docs]defset_ud_source(self,use_diff_src_state:bool)->None:"""SCPI: [SOURce<HW>]:BB:GNSS:SV:IMPort:GALileo:UDSource \n Snippet: driver.source.bb.gnss.sv.importPy.galileo.set_ud_source(use_diff_src_state = False) \n Enables loading the dedicated files as source for the navigation data. \n :param use_diff_src_state: 1| ON| 0| OFF """param=Conversions.bool_to_str(use_diff_src_state)self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SV:IMPort:GALileo:UDSource {param}')
defclone(self)->'GalileoCls':"""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=GalileoCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group