Source code for RsCMPX_Base.Implementations.Cmwd

from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup
from ...Internal.ArgSingleSuppressed import ArgSingleSuppressed
from ...Internal.Types import DataType
from ...Internal.Utilities import trim_str_response


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class CmwdCls: """Cmwd commands group definition. 5 total commands, 1 Subgroups, 4 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("cmwd", core, parent) @property def state(self): """state commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_state'): from .State import StateCls self._state = StateCls(self._core, self._cmd_group) return self._state
[docs] def initiate(self) -> None: """SCPI: INITiate:CMWD \n Snippet: driver.cmwd.initiate() \n No command help available \n """ self._core.io.write(f'INITiate:CMWD')
[docs] def initiate_with_opc(self, opc_timeout_ms: int = -1) -> None: """SCPI: INITiate:CMWD \n Snippet: driver.cmwd.initiate_with_opc() \n No command help available \n Same as initiate, but waits for the operation to complete before continuing further. Use the RsCMPX_Base.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:CMWD', opc_timeout_ms)
[docs] def stop(self) -> None: """SCPI: STOP:CMWD \n Snippet: driver.cmwd.stop() \n No command help available \n """ self._core.io.write(f'STOP:CMWD')
[docs] def stop_with_opc(self, opc_timeout_ms: int = -1) -> None: """SCPI: STOP:CMWD \n Snippet: driver.cmwd.stop_with_opc() \n No command help available \n Same as stop, but waits for the operation to complete before continuing further. Use the RsCMPX_Base.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'STOP:CMWD', opc_timeout_ms)
[docs] def abort(self) -> None: """SCPI: ABORt:CMWD \n Snippet: driver.cmwd.abort() \n No command help available \n """ self._core.io.write(f'ABORt:CMWD')
[docs] def abort_with_opc(self, opc_timeout_ms: int = -1) -> None: """SCPI: ABORt:CMWD \n Snippet: driver.cmwd.abort_with_opc() \n No command help available \n Same as abort, but waits for the operation to complete before continuing further. Use the RsCMPX_Base.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'ABORt:CMWD', opc_timeout_ms)
[docs] def fetch(self) -> str: """SCPI: FETCh:CMWD \n Snippet: value: str = driver.cmwd.fetch() \n No command help available \n Suppressed linked return values: reliability \n :return: result_string: No help available""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_str_suppressed(f'FETCh:CMWD?', suppressed) return trim_str_response(response)
def clone(self) -> 'CmwdCls': """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 = CmwdCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group