Source code for RsCmwCdma2kMeas.Implementations.MultiEval_.Trace_.Cde_.Qsignal_.Limit

from typing import List

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Limit: """Limit commands group definition. 1 total commands, 0 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("limit", core, parent)
[docs] def fetch(self) -> List[float]: """SCPI: FETCh:CDMA:MEASurement<Instance>:MEValuation:TRACe:CDE:QSIGnal:LIMit \n Snippet: value: List[float] = driver.multiEval.trace.cde.qsignal.limit.fetch() \n Return limit check results for the code domain error (CDE) I-Signal and Q-Signal bar graphs. \n Use RsCmwCdma2kMeas.reliability.last_value to read the updated reliability indicator. \n :return: qsig_limit: float Return the exceeded limits as float values. The number of results depends on the selected spreading factor: SF=16, 32, 64.""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'FETCh:CDMA:MEASurement<Instance>:MEValuation:TRACe:CDE:QSIGnal:LIMit?', suppressed) return response