Source code for RsCmwLteMeas.Implementations.Configure.MultiEval.Spectrum.Aclr.Enable

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.Types import DataType
from ......Internal.StructBase import StructBase
from ......Internal.ArgStruct import ArgStruct
from ......Internal.ArgSingleList import ArgSingleList
from ......Internal.ArgSingle import ArgSingle


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class EnableCls: """Enable commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("enable", core, parent)
[docs] def set(self, utra_1: bool, utra_2: bool, eutra: bool) -> None: """SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:SPECtrum:ACLR:ENABle \n Snippet: driver.configure.multiEval.spectrum.aclr.enable.set(utra_1 = False, utra_2 = False, eutra = False) \n Enables or disables the evaluation of the first adjacent UTRA channels, second adjacent UTRA channels and first adjacent E-UTRA channels. \n :param utra_1: OFF | ON :param utra_2: OFF | ON :param eutra: OFF | ON """ param = ArgSingleList().compose_cmd_string(ArgSingle('utra_1', utra_1, DataType.Boolean), ArgSingle('utra_2', utra_2, DataType.Boolean), ArgSingle('eutra', eutra, DataType.Boolean)) self._core.io.write(f'CONFigure:LTE:MEASurement<Instance>:MEValuation:SPECtrum:ACLR:ENABle {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class EnableStruct(StructBase): """Response structure. Fields: \n - Utra_1: bool: OFF | ON - Utra_2: bool: OFF | ON - Eutra: bool: OFF | ON""" __meta_args_list = [ ArgStruct.scalar_bool('Utra_1'), ArgStruct.scalar_bool('Utra_2'), ArgStruct.scalar_bool('Eutra')] def __init__(self): StructBase.__init__(self, self) self.Utra_1: bool = None self.Utra_2: bool = None self.Eutra: bool = None
[docs] def get(self) -> EnableStruct: """SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:SPECtrum:ACLR:ENABle \n Snippet: value: EnableStruct = driver.configure.multiEval.spectrum.aclr.enable.get() \n Enables or disables the evaluation of the first adjacent UTRA channels, second adjacent UTRA channels and first adjacent E-UTRA channels. \n :return: structure: for return value, see the help for EnableStruct structure arguments.""" return self._core.io.query_struct(f'CONFigure:LTE:MEASurement<Instance>:MEValuation:SPECtrum:ACLR:ENABle?', self.__class__.EnableStruct())