Source code for RsCMPX_UwbMeas.Implementations.UwbMeas.MultiEval

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class MultiEvalCls: """MultiEval commands group definition. 494 total commands, 9 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("multiEval", core, parent) @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 @property def ddecoding(self): """ddecoding commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_ddecoding'): from .Ddecoding import DdecodingCls self._ddecoding = DdecodingCls(self._core, self._cmd_group) return self._ddecoding @property def tsMask(self): """tsMask commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_tsMask'): from .TsMask import TsMaskCls self._tsMask = TsMaskCls(self._core, self._cmd_group) return self._tsMask @property def modulation(self): """modulation commands group. 27 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 power(self): """power commands group. 13 Sub-classes, 0 commands.""" if not hasattr(self, '_power'): from .Power import PowerCls self._power = PowerCls(self._core, self._cmd_group) return self._power @property def sinfo(self): """sinfo commands group. 14 Sub-classes, 2 commands.""" if not hasattr(self, '_sinfo'): from .Sinfo import SinfoCls self._sinfo = SinfoCls(self._core, self._cmd_group) return self._sinfo @property def pmask(self): """pmask commands group. 4 Sub-classes, 0 commands.""" if not hasattr(self, '_pmask'): from .Pmask import PmaskCls self._pmask = PmaskCls(self._core, self._cmd_group) return self._pmask @property def stsSequence(self): """stsSequence commands group. 2 Sub-classes, 0 commands.""" if not hasattr(self, '_stsSequence'): from .StsSequence import StsSequenceCls self._stsSequence = StsSequenceCls(self._core, self._cmd_group) return self._stsSequence @property def trace(self): """trace commands group. 10 Sub-classes, 0 commands.""" if not hasattr(self, '_trace'): from .Trace import TraceCls self._trace = TraceCls(self._core, self._cmd_group) return self._trace
[docs] def initiate(self, opc_timeout_ms: int = -1) -> None: """SCPI: INITiate:UWB:MEASurement<Instance>:MEValuation \n Snippet: driver.uwbMeas.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:UWB:MEASurement<Instance>:MEValuation', opc_timeout_ms)
[docs] def stop(self, opc_timeout_ms: int = -1) -> None: """SCPI: STOP:UWB:MEASurement<Instance>:MEValuation \n Snippet: driver.uwbMeas.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 :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'STOP:UWB:MEASurement<Instance>:MEValuation', opc_timeout_ms)
[docs] def abort(self, opc_timeout_ms: int = -1) -> None: """SCPI: ABORt:UWB:MEASurement<Instance>:MEValuation \n Snippet: driver.uwbMeas.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:UWB: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