Source code for RsCmwLteSig.Implementations.Sense.UeCapability.TaueEutra.InterRat.Eredirection

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class EredirectionCls: """Eredirection commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("eredirection", core, parent)
[docs] def get_utra(self) -> bool: """SCPI: SENSe:LTE:SIGNaling<instance>:UECapability:TAUeeutra:IRAT:EREDirection:UTRA \n Snippet: value: bool = driver.sense.ueCapability.taueEutra.interRat.eredirection.get_utra() \n Returns whether the UE supports an enhanced redirection to UTRA FDD or not. \n :return: supported: OFF | ON """ response = self._core.io.query_str('SENSe:LTE:SIGNaling<Instance>:UECapability:TAUeeutra:IRAT:EREDirection:UTRA?') return Conversions.str_to_bool(response)
[docs] def get_utdd(self) -> bool: """SCPI: SENSe:LTE:SIGNaling<instance>:UECapability:TAUeeutra:IRAT:EREDirection:UTDD \n Snippet: value: bool = driver.sense.ueCapability.taueEutra.interRat.eredirection.get_utdd() \n Returns whether the UE supports an enhanced redirection to UTRA TDD or not. \n :return: supported: OFF | ON """ response = self._core.io.query_str('SENSe:LTE:SIGNaling<Instance>:UECapability:TAUeeutra:IRAT:EREDirection:UTDD?') return Conversions.str_to_bool(response)