Source code for RsCmwLteMeas.Implementations.MultiEval.ListPy.Modulation.SchType

from typing import List

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class SchTypeCls: """SchType commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("schType", core, parent) # noinspection PyTypeChecker
[docs] def fetch(self) -> List[enums.SidelinkChannelType]: """SCPI: FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:MODulation:SCHType \n Snippet: value: List[enums.SidelinkChannelType] = driver.multiEval.listPy.modulation.schType.fetch() \n Returns the sidelink channel type evaluated for modulation results, for all measured list mode segments. \n Use RsCmwLteMeas.reliability.last_value to read the updated reliability indicator. \n :return: channel_type: PSSCh | PSCCh Comma-separated list of values, one per measured segment""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_str_suppressed(f'FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:MODulation:SCHType?', suppressed) return Conversions.str_to_list_enum(response, enums.SidelinkChannelType)