Source code for RsFswp.Implementations.Applications.K70_Vsa.InputPy.Select

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
from ..... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SelectCls: """Select commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("select", core, parent)
[docs] def set(self, baseband_input_source: enums.BbInputSource, inputIx=repcap.InputIx.Default) -> None: """SCPI: INPut<ip>:SELect \n Snippet: driver.applications.k70Vsa.inputPy.select.set(baseband_input_source = enums.BbInputSource.AIQ, inputIx = repcap.InputIx.Default) \n This command selects the signal source for measurements, i.e. it defines which connector is used to input data to the R&S FSWP. Tip: The I/Q data to be analyzed for VSA cannot only be measured by the R&S FSWP VSA application itself, it can also be imported to the application, provided it has the correct format. Furthermore, the analyzed I/Q data from the R&S FSWP VSA application can be exported for further analysis in external applications. For details, see the R&S FSWP I/Q Analyzer and I/Q Input User Manual. \n :param baseband_input_source: No help available :param inputIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'InputPy') """ param = Conversions.enum_scalar_to_str(baseband_input_source, enums.BbInputSource) inputIx_cmd_val = self._cmd_group.get_repcap_cmd_value(inputIx, repcap.InputIx) self._core.io.write(f'INPut{inputIx_cmd_val}:SELect {param}')
# noinspection PyTypeChecker
[docs] def get(self, inputIx=repcap.InputIx.Default) -> enums.BbInputSource: """SCPI: INPut<ip>:SELect \n Snippet: value: enums.BbInputSource = driver.applications.k70Vsa.inputPy.select.get(inputIx = repcap.InputIx.Default) \n This command selects the signal source for measurements, i.e. it defines which connector is used to input data to the R&S FSWP. Tip: The I/Q data to be analyzed for VSA cannot only be measured by the R&S FSWP VSA application itself, it can also be imported to the application, provided it has the correct format. Furthermore, the analyzed I/Q data from the R&S FSWP VSA application can be exported for further analysis in external applications. For details, see the R&S FSWP I/Q Analyzer and I/Q Input User Manual. \n :param inputIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'InputPy') :return: baseband_input_source: No help available""" inputIx_cmd_val = self._cmd_group.get_repcap_cmd_value(inputIx, repcap.InputIx) response = self._core.io.query_str(f'INPut{inputIx_cmd_val}:SELect?') return Conversions.str_to_scalar_enum(response, enums.BbInputSource)