Source code for RsCmwBluetoothMeas.Implementations.MultiEval

from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class MultiEvalCls: """MultiEval commands group definition. 608 total commands, 10 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("multiEval", core, parent) @property def sacp(self): """sacp commands group. 4 Sub-classes, 0 commands.""" if not hasattr(self, '_sacp'): from .Sacp import SacpCls self._sacp = SacpCls(self._core, self._cmd_group) return self._sacp @property def powerVsTime(self): """powerVsTime commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_powerVsTime'): from .PowerVsTime import PowerVsTimeCls self._powerVsTime = PowerVsTimeCls(self._core, self._cmd_group) return self._powerVsTime @property def modulation(self): """modulation commands group. 6 Sub-classes, 0 commands.""" if not hasattr(self, '_modulation'): from .Modulation import ModulationCls self._modulation = ModulationCls(self._core, self._cmd_group) return self._modulation @property def listPy(self): """listPy commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_listPy'): from .ListPy import ListPyCls self._listPy = ListPyCls(self._core, self._cmd_group) return self._listPy @property def trace(self): """trace commands group. 13 Sub-classes, 0 commands.""" if not hasattr(self, '_trace'): from .Trace import TraceCls self._trace = TraceCls(self._core, self._cmd_group) return self._trace @property def frange(self): """frange commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_frange'): from .Frange import FrangeCls self._frange = FrangeCls(self._core, self._cmd_group) return self._frange @property def sgacp(self): """sgacp commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_sgacp'): from .Sgacp import SgacpCls self._sgacp = SgacpCls(self._core, self._cmd_group) return self._sgacp @property def soBw(self): """soBw commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_soBw'): from .SoBw import SoBwCls self._soBw = SoBwCls(self._core, self._cmd_group) return self._soBw @property def pencoding(self): """pencoding commands group. 2 Sub-classes, 0 commands.""" if not hasattr(self, '_pencoding'): from .Pencoding import PencodingCls self._pencoding = PencodingCls(self._core, self._cmd_group) return self._pencoding @property def state(self): """state commands group. 1 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 stop(self) -> None: """SCPI: STOP:BLUetooth:MEASurement<Instance>:MEValuation \n Snippet: driver.multiEval.stop() \n INTRO_CMD_HELP: Starts, stops, or aborts the measurement: \n - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state. - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement. - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released. Use FETCh...STATe? to query the current measurement state. \n """ self._core.io.write(f'STOP:BLUetooth:MEASurement<Instance>:MEValuation')
[docs] def stop_with_opc(self, opc_timeout_ms: int = -1) -> None: """SCPI: STOP:BLUetooth:MEASurement<Instance>:MEValuation \n Snippet: driver.multiEval.stop_with_opc() \n INTRO_CMD_HELP: Starts, stops, or aborts the measurement: \n - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state. - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement. - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released. Use FETCh...STATe? to query the current measurement state. \n Same as stop, but waits for the operation to complete before continuing further. Use the RsCmwBluetoothMeas.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:BLUetooth:MEASurement<Instance>:MEValuation', opc_timeout_ms)
[docs] def abort(self, opc_timeout_ms: int = -1) -> None: """SCPI: ABORt:BLUetooth:MEASurement<Instance>:MEValuation \n Snippet: driver.multiEval.abort() \n INTRO_CMD_HELP: Starts, stops, or aborts the measurement: \n - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state. - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement. - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released. Use FETCh...STATe? to query the current measurement state. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'ABORt:BLUetooth:MEASurement<Instance>:MEValuation', opc_timeout_ms)
[docs] def initiate(self, opc_timeout_ms: int = -1) -> None: """SCPI: INITiate:BLUetooth:MEASurement<Instance>:MEValuation \n Snippet: driver.multiEval.initiate() \n INTRO_CMD_HELP: Starts, stops, or aborts the measurement: \n - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state. - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement. - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released. Use FETCh...STATe? to query the current measurement state. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'INITiate:BLUetooth:MEASurement<Instance>:MEValuation', opc_timeout_ms)
def clone(self) -> 'MultiEvalCls': """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 = MultiEvalCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group