Source code for RsCMPX_WlanMeas.Implementations.WlanMeas.MultiEval.Trace.TsMask.Segment.Minimum

from typing import List

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal.ArgSingleSuppressed import ArgSingleSuppressed
from .......Internal.Types import DataType
from .......Internal.ArgSingleList import ArgSingleList
from .......Internal.ArgSingle import ArgSingle
from ....... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class MinimumCls: """Minimum commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("minimum", core, parent)
[docs] def read(self, start: float = None, count: float = None, decimation: float = None, segment=repcap.Segment.Default) -> List[float]: """SCPI: READ:WLAN:MEASurement<Instance>:MEValuation:TRACe:TSMask:SEGMent<seg>:MINimum \n Snippet: value: List[float] = driver.wlanMeas.multiEval.trace.tsMask.segment.minimum.read(start = 1.0, count = 1.0, decimation = 1.0, segment = repcap.Segment.Default) \n No command help available \n Suppressed linked return values: reliability \n :param start: No help available :param count: No help available :param decimation: No help available :param segment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :return: spectrum_trace_segment: No help available""" param = ArgSingleList().compose_cmd_string(ArgSingle('start', start, DataType.Float, None, is_optional=True), ArgSingle('count', count, DataType.Float, None, is_optional=True), ArgSingle('decimation', decimation, DataType.Float, None, is_optional=True)) segment_cmd_val = self._cmd_group.get_repcap_cmd_value(segment, repcap.Segment) suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'READ:WLAN:MEASurement<Instance>:MEValuation:TRACe:TSMask:SEGMent{segment_cmd_val}:MINimum? {param}'.rstrip(), suppressed) return response
[docs] def fetch(self, start: float = None, count: float = None, decimation: float = None, segment=repcap.Segment.Default) -> List[float]: """SCPI: FETCh:WLAN:MEASurement<Instance>:MEValuation:TRACe:TSMask:SEGMent<seg>:MINimum \n Snippet: value: List[float] = driver.wlanMeas.multiEval.trace.tsMask.segment.minimum.fetch(start = 1.0, count = 1.0, decimation = 1.0, segment = repcap.Segment.Default) \n No command help available \n Suppressed linked return values: reliability \n :param start: No help available :param count: No help available :param decimation: No help available :param segment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :return: spectrum_trace_segment: No help available""" param = ArgSingleList().compose_cmd_string(ArgSingle('start', start, DataType.Float, None, is_optional=True), ArgSingle('count', count, DataType.Float, None, is_optional=True), ArgSingle('decimation', decimation, DataType.Float, None, is_optional=True)) segment_cmd_val = self._cmd_group.get_repcap_cmd_value(segment, repcap.Segment) suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'FETCh:WLAN:MEASurement<Instance>:MEValuation:TRACe:TSMask:SEGMent{segment_cmd_val}:MINimum? {param}'.rstrip(), suppressed) return response