[docs]classMstationCls:"""Mstation commands group definition. 260 total commands, 14 Subgroups, 1 group commands Repeated Capability: MobileStation, default value after init: MobileStation.Nr1"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("mstation",core,parent)self._cmd_group.rep_cap=RepeatedCapability(self._cmd_group.group_name,'repcap_mobileStation_get','repcap_mobileStation_set',repcap.MobileStation.Nr1)defrepcap_mobileStation_set(self,mobileStation:repcap.MobileStation)->None:"""Repeated Capability default value numeric suffix. This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to MobileStation.Default Default value after init: MobileStation.Nr1"""self._cmd_group.set_repcap_enum_value(mobileStation)defrepcap_mobileStation_get(self)->repcap.MobileStation:"""Returns the current default repeated capability for the child set/get methods"""# noinspection PyTypeCheckerreturnself._cmd_group.get_repcap_enum_value()@propertydefadditional(self):"""additional commands group. 3 Sub-classes, 2 commands."""ifnothasattr(self,'_additional'):from.AdditionalimportAdditionalClsself._additional=AdditionalCls(self._core,self._cmd_group)returnself._additional@propertydefchannel(self):"""channel commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_channel'):from.ChannelimportChannelClsself._channel=ChannelCls(self._core,self._cmd_group)returnself._channel@propertydefcmode(self):"""cmode commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_cmode'):from.CmodeimportCmodeClsself._cmode=CmodeCls(self._core,self._cmd_group)returnself._cmode@propertydefdpcch(self):"""dpcch commands group. 8 Sub-classes, 0 commands."""ifnothasattr(self,'_dpcch'):from.DpcchimportDpcchClsself._dpcch=DpcchCls(self._core,self._cmd_group)returnself._dpcch@propertydefdpdch(self):"""dpdch commands group. 4 Sub-classes, 0 commands."""ifnothasattr(self,'_dpdch'):from.DpdchimportDpdchClsself._dpdch=DpdchCls(self._core,self._cmd_group)returnself._dpdch@propertydefenhanced(self):"""enhanced commands group. 3 Sub-classes, 0 commands."""ifnothasattr(self,'_enhanced'):from.EnhancedimportEnhancedClsself._enhanced=EnhancedCls(self._core,self._cmd_group)returnself._enhanced@propertydefmode(self):"""mode commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_mode'):from.ModeimportModeClsself._mode=ModeCls(self._core,self._cmd_group)returnself._mode@propertydefpcpch(self):"""pcpch commands group. 18 Sub-classes, 0 commands."""ifnothasattr(self,'_pcpch'):from.PcpchimportPcpchClsself._pcpch=PcpchCls(self._core,self._cmd_group)returnself._pcpch@propertydefprach(self):"""prach commands group. 15 Sub-classes, 0 commands."""ifnothasattr(self,'_prach'):from.PrachimportPrachClsself._prach=PrachCls(self._core,self._cmd_group)returnself._prach@propertydefscode(self):"""scode commands group. 1 Sub-classes, 1 commands."""ifnothasattr(self,'_scode'):from.ScodeimportScodeClsself._scode=ScodeCls(self._core,self._cmd_group)returnself._scode@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._state@propertydeftdelay(self):"""tdelay commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_tdelay'):from.TdelayimportTdelayClsself._tdelay=TdelayCls(self._core,self._cmd_group)returnself._tdelay@propertydefudtx(self):"""udtx commands group. 6 Sub-classes, 6 commands."""ifnothasattr(self,'_udtx'):from.UdtximportUdtxClsself._udtx=UdtxCls(self._core,self._cmd_group)returnself._udtx@propertydefhsupa(self):"""hsupa commands group. 4 Sub-classes, 0 commands."""ifnothasattr(self,'_hsupa'):from.HsupaimportHsupaClsself._hsupa=HsupaCls(self._core,self._cmd_group)returnself._hsupa
[docs]defpreset(self)->None:"""SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:PRESet \n Snippet: driver.source.bb.w3Gpp.mstation.preset() \n The command produces a standardized default for all the user equipment. The settings correspond to the *RST values specified for the commands. All user equipment settings are preset. \n """self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:MSTation:PRESet')
[docs]defpreset_with_opc(self,opc_timeout_ms:int=-1)->None:"""SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:PRESet \n Snippet: driver.source.bb.w3Gpp.mstation.preset_with_opc() \n The command produces a standardized default for all the user equipment. The settings correspond to the *RST values specified for the commands. All user equipment settings are preset. \n Same as preset, but waits for the operation to complete before continuing further. Use the RsSmbv.utilities.opc_timeout_set() to set the timeout value. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call."""self._core.io.write_with_opc(f'SOURce<HwInstance>:BB:W3GPp:MSTation:PRESet',opc_timeout_ms)
defclone(self)->'MstationCls':"""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=MstationCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group