Source code for RsFsw.Implementations.Applications.K14x_Nr5G.Sense.Sweep.Mode

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ModeCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("mode", core, parent)

[docs] def set(self, mode: enums.SweepModeD) -> None: """ ``[SENSe]:SWEep:MODE`` \n Snippet: ``driver.applications.k14Xnr5G.sense.sweep.mode.set(mode = enums.SweepModeD.AUTO)`` \n Selects the capture mode for combined measurements. Prerequisites for this command \n - Measure the EVM only: \n - method ``RsFsw.applications.k14Xnr5G.configure.nr5G.aclr.set()`` = OFF - method ``RsFsw.applications.k14Xnr5G.configure.nr5G.sem.set()`` = OFF - method ``RsFsw.applications.k14Xnr5G.configure.nr5G.evm.set()`` = ON :param mode: AUTO Captures and analyzes the complete signal. TX Captures and analyzes the Tx channel only. """ param = Conversions.enum_scalar_to_str(mode, enums.SweepModeD) self._core.io.write(f'SENSe:SWEep:MODE {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.SweepModeD: """ ``[SENSe]:SWEep:MODE`` \n Snippet: ``value: enums.SweepModeD = driver.applications.k14Xnr5G.sense.sweep.mode.get()`` \n Selects the capture mode for combined measurements. Prerequisites for this command \n - Measure the EVM only: \n - method ``RsFsw.applications.k14Xnr5G.configure.nr5G.aclr.set()`` = OFF - method ``RsFsw.applications.k14Xnr5G.configure.nr5G.sem.set()`` = OFF - method ``RsFsw.applications.k14Xnr5G.configure.nr5G.evm.set()`` = ON :return: mode: AUTO Captures and analyzes the complete signal. TX Captures and analyzes the Tx channel only. """ response = self._core.io.query_str(f'SENSe:SWEep:MODE?') return Conversions.str_to_scalar_enum(response, enums.SweepModeD)