[docs]classAqPskCls:"""AqPsk commands group definition. 3 total commands, 2 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("aqPsk",core,parent)@propertydefangle(self):"""angle commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_angle'):from.AngleimportAngleClsself._angle=AngleCls(self._core,self._cmd_group)returnself._angle@propertydefscpir(self):"""scpir commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_scpir'):from.ScpirimportScpirClsself._scpir=ScpirCls(self._core,self._cmd_group)returnself._scpir# noinspection PyTypeChecker
[docs]defget_format_py(self)->enums.GsmModTypeAqpsk:"""SCPI: [SOURce<HW>]:BB:GSM:AQPSk:FORMat \n Snippet: value: enums.GsmModTypeAqpsk = driver.source.bb.gsm.aqPsk.get_format_py() \n The command queries the modulation type. The modulation type is permanently set to AQPSK. \n :return: format_py: AQPSk """response=self._core.io.query_str('SOURce<HwInstance>:BB:GSM:AQPSk:FORMat?')returnConversions.str_to_scalar_enum(response,enums.GsmModTypeAqpsk)
defclone(self)->'AqPskCls':"""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=AqPskCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group