Source code for RsCMX_Signaling.Implementations.Signaling.Measurement.CqiReporting

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class CqiReportingCls: """CqiReporting commands group definition. 8 total commands, 4 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("cqiReporting", 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 @property def trace(self): """trace commands group. 2 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 nradio(self): """nradio commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_nradio'): from .Nradio import NradioCls self._nradio = NradioCls(self._core, self._cmd_group) return self._nradio @property def lte(self): """lte commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_lte'): from .Lte import LteCls self._lte = LteCls(self._core, self._cmd_group) return self._lte
[docs] def abort(self) -> None: """SCPI: ABORt:SIGNaling:MEASurement:CQIReporting \n Snippet: driver.signaling.measurement.cqiReporting.abort() \n Stops the measurement. The measurement enters the 'RDY' state. \n """ self._core.io.write(f'ABORt:SIGNaling:MEASurement:CQIReporting')
[docs] def abort_with_opc(self, opc_timeout_ms: int = -1) -> None: """SCPI: ABORt:SIGNaling:MEASurement:CQIReporting \n Snippet: driver.signaling.measurement.cqiReporting.abort_with_opc() \n Stops the measurement. The measurement enters the 'RDY' state. \n Same as abort, but waits for the operation to complete before continuing further. Use the RsCMX_Signaling.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:SIGNaling:MEASurement:CQIReporting', opc_timeout_ms)
def clone(self) -> 'CqiReportingCls': """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 = CqiReportingCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group