Source code for RsCmwLteSig.Implementations.Ebler.Pcc.Ri

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 RiCls: """Ri commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ri", core, parent)
[docs] def fetch(self) -> List[int]: """SCPI: FETCh:LTE:SIGNaling<instance>:EBLer[:PCC]:RI \n Snippet: value: List[int] = driver.ebler.pcc.ri.fetch() \n Returns the rank indicator (RI) results. \n Use RsCmwLteSig.reliability.last_value to read the updated reliability indicator. \n :return: ri: decimal Comma-separated list of four values: Number of received 'RI = 1', Number of received 'RI = 2', Number of received 'RI = 3', Number of received 'RI = 4'""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_int_list_suppressed(f'FETCh:LTE:SIGNaling<Instance>:EBLer:PCC:RI?', suppressed) return response