[docs]classSequencerCls:"""Sequencer commands group definition. 4 total commands, 3 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("sequencer",core,parent)@propertydefimmediate(self):"""immediate commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_immediate'):from.ImmediateimportImmediateClsself._immediate=ImmediateCls(self._core,self._cmd_group)returnself._immediate@propertydefmode(self):"""mode commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_mode'):from.ModeimportModeClsself._mode=ModeCls(self._core,self._cmd_group)returnself._mode@propertydefrefresh(self):"""refresh commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_refresh'):from.RefreshimportRefreshClsself._refresh=RefreshCls(self._core,self._cmd_group)returnself._refresh
[docs]defabort(self)->None:"""SCPI: INITiate:SEQuencer:ABORt \n Snippet: driver.initiate.sequencer.abort() \n Stops the currently active sequence of measurements. You can start a new sequence any time using method RsFsw.Initiate. Sequencer.Immediate.set. \n """self._core.io.write(f'INITiate:SEQuencer:ABORt')
[docs]defabort_with_opc(self,opc_timeout_ms:int=-1)->None:"""SCPI: INITiate:SEQuencer:ABORt \n Snippet: driver.initiate.sequencer.abort_with_opc() \n Stops the currently active sequence of measurements. You can start a new sequence any time using method RsFsw.Initiate. Sequencer.Immediate.set. \n Same as abort, but waits for the operation to complete before continuing further. Use the RsFsw.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'INITiate:SEQuencer:ABORt',opc_timeout_ms)
defclone(self)->'SequencerCls':"""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=SequencerCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group