Source code for RsCMX_Signaling.Implementations.Configure.Signaling.Fgs.UeCapability.Eutra

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class EutraCls: """Eutra commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("eutra", core, parent)
[docs] def get_rformat(self) -> bool: """SCPI: [CONFigure]:SIGNaling:FGS:UECapability:EUTRa:RFORmat \n Snippet: value: bool = driver.configure.signaling.fgs.ueCapability.eutra.get_rformat() \n Adds the field 'requestReducedFormat-r13' to the message 'UeCapabilityEnquiry', for 5GS tracking areas, container type 'UE-EUTRA-Capability'. \n :return: enable: No help available """ response = self._core.io.query_str('CONFigure:SIGNaling:FGS:UECapability:EUTRa:RFORmat?') return Conversions.str_to_bool(response)
[docs] def set_rformat(self, enable: bool) -> None: """SCPI: [CONFigure]:SIGNaling:FGS:UECapability:EUTRa:RFORmat \n Snippet: driver.configure.signaling.fgs.ueCapability.eutra.set_rformat(enable = False) \n Adds the field 'requestReducedFormat-r13' to the message 'UeCapabilityEnquiry', for 5GS tracking areas, container type 'UE-EUTRA-Capability'. \n :param enable: No help available """ param = Conversions.bool_to_str(enable) self._core.io.write(f'CONFigure:SIGNaling:FGS:UECapability:EUTRa:RFORmat {param}')
[docs] def get_sfc(self) -> bool: """SCPI: [CONFigure]:SIGNaling:FGS:UECapability:EUTRa:SFC \n Snippet: value: bool = driver.configure.signaling.fgs.ueCapability.eutra.get_sfc() \n Adds the field 'requestSkipFallbackComb-r13' to the message 'UeCapabilityEnquiry', for 5GS tracking areas, container type 'UE-EUTRA-Capability'. \n :return: enable: No help available """ response = self._core.io.query_str('CONFigure:SIGNaling:FGS:UECapability:EUTRa:SFC?') return Conversions.str_to_bool(response)
[docs] def set_sfc(self, enable: bool) -> None: """SCPI: [CONFigure]:SIGNaling:FGS:UECapability:EUTRa:SFC \n Snippet: driver.configure.signaling.fgs.ueCapability.eutra.set_sfc(enable = False) \n Adds the field 'requestSkipFallbackComb-r13' to the message 'UeCapabilityEnquiry', for 5GS tracking areas, container type 'UE-EUTRA-Capability'. \n :param enable: No help available """ param = Conversions.bool_to_str(enable) self._core.io.write(f'CONFigure:SIGNaling:FGS:UECapability:EUTRa:SFC {param}')