Source code for RsCMPX_NrFr1Meas.Implementations.NrSubMeas.MultiEval.Cc.Modulation.DchType

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ......Internal.ArgSingleSuppressed import ArgSingleSuppressed
from ......Internal.Types import DataType
from ...... import enums
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class DchTypeCls: """DchType commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("dchType", core, parent) # noinspection PyTypeChecker
[docs] def fetch(self, carrierComponent=repcap.CarrierComponent.Default) -> enums.ChannelTypeA: """SCPI: FETCh:NRSub:MEASurement<Instance>:MEValuation[:CC<no>]:MODulation:DCHType \n Snippet: value: enums.ChannelTypeA = driver.nrSubMeas.multiEval.cc.modulation.dchType.fetch(carrierComponent = repcap.CarrierComponent.Default) \n Returns the channel type for the measured slot, for carrier <no>. \n Suppressed linked return values: reliability \n :param carrierComponent: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cc') :return: channel_type: No help available""" carrierComponent_cmd_val = self._cmd_group.get_repcap_cmd_value(carrierComponent, repcap.CarrierComponent) suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_str_suppressed(f'FETCh:NRSub:MEASurement<Instance>:MEValuation:CC{carrierComponent_cmd_val}:MODulation:DCHType?', suppressed) return Conversions.str_to_scalar_enum(response, enums.ChannelTypeA)