Source code for RsSmbv.Implementations.Sconfiguration.External.Bbmm.Remote.Iselect

from typing import List

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
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class IselectCls: """Iselect commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("iselect", core, parent)
[docs] def set(self, instr_name: List[str], rf_path: str = None, iqConnector=repcap.IqConnector.Default) -> None: """SCPI: SCONfiguration:EXTernal:BBMM<CH>:REMote:ISELect \n Snippet: driver.sconfiguration.external.bbmm.remote.iselect.set(instr_name = ['abc1', 'abc2', 'abc3'], rf_path = 'abc', iqConnector = repcap.IqConnector.Default) \n No command help available \n :param instr_name: No help available :param rf_path: No help available :param iqConnector: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bbmm') """ param = ArgSingleList().compose_cmd_string(ArgSingle.as_open_list('instr_name', instr_name, DataType.StringList, None), ArgSingle('rf_path', rf_path, DataType.String, None, is_optional=True)) iqConnector_cmd_val = self._cmd_group.get_repcap_cmd_value(iqConnector, repcap.IqConnector) self._core.io.write(f'SCONfiguration:EXTernal:BBMM{iqConnector_cmd_val}:REMote:ISELect {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class IselectStruct(StructBase): """Response structure. Fields: \n - Instr_Name: List[str]: No parameter help available - Rf_Path: str: No parameter help available""" __meta_args_list = [ ArgStruct('Instr_Name', DataType.StringList, None, False, True, 1), ArgStruct.scalar_str('Rf_Path')] def __init__(self): StructBase.__init__(self, self) self.Instr_Name: List[str] = None self.Rf_Path: str = None
[docs] def get(self, iqConnector=repcap.IqConnector.Default) -> IselectStruct: """SCPI: SCONfiguration:EXTernal:BBMM<CH>:REMote:ISELect \n Snippet: value: IselectStruct = driver.sconfiguration.external.bbmm.remote.iselect.get(iqConnector = repcap.IqConnector.Default) \n No command help available \n :param iqConnector: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bbmm') :return: structure: for return value, see the help for IselectStruct structure arguments.""" iqConnector_cmd_val = self._cmd_group.get_repcap_cmd_value(iqConnector, repcap.IqConnector) return self._core.io.query_struct(f'SCONfiguration:EXTernal:BBMM{iqConnector_cmd_val}:REMote:ISELect?', self.__class__.IselectStruct())