[docs]defget_mode(self)->enums.Hybrid:"""SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:MODE \n Snippet: value: enums.Hybrid = driver.source.bb.gnss.adGeneration.get_mode() \n Defines the type of assistance data to be loaded. \n :return: mode: GPS| GALileo| GLONass| NAVic| QZSS| SBAS| BEIDou """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:ADGeneration:MODE?')returnConversions.str_to_scalar_enum(response,enums.Hybrid)
[docs]defset_mode(self,mode:enums.Hybrid)->None:"""SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:MODE \n Snippet: driver.source.bb.gnss.adGeneration.set_mode(mode = enums.Hybrid.BEIDou) \n Defines the type of assistance data to be loaded. \n :param mode: GPS| GALileo| GLONass| NAVic| QZSS| SBAS| BEIDou """param=Conversions.enum_scalar_to_str(mode,enums.Hybrid)self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:ADGeneration:MODE {param}')
defclone(self)->'AdGenerationCls':"""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=AdGenerationCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group