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

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


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

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

[docs] def set(self, mode: enums.AutoManualMode) -> None: """ ``[SENSe]:SWEep:CTMode`` \n Snippet: ``driver.applications.k14Xnr5G.sense.sweep.ctMode.set(mode = enums.AutoManualMode.AUTO)`` \n Selects the capture mode. Prerequisites for this command \n - Select FR2-2 (method ``RsFsw.applications.k14Xnr5G.configure.nr5G.downlink.cc.dfRange.set()`` ) . :param mode: AUTO Automatic determination of the capture time. MANual Manual definition of the capture time. Define the capture time with method ``RsFsw.sense.sweep.time.set()`` . """ param = Conversions.enum_scalar_to_str(mode, enums.AutoManualMode) self._core.io.write(f'SENSe:SWEep:CTMode {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.AutoManualMode: """ ``[SENSe]:SWEep:CTMode`` \n Snippet: ``value: enums.AutoManualMode = driver.applications.k14Xnr5G.sense.sweep.ctMode.get()`` \n Selects the capture mode. Prerequisites for this command \n - Select FR2-2 (method ``RsFsw.applications.k14Xnr5G.configure.nr5G.downlink.cc.dfRange.set()`` ) . :return: mode: AUTO Automatic determination of the capture time. MANual Manual definition of the capture time. Define the capture time with method ``RsFsw.sense.sweep.time.set()`` . """ response = self._core.io.query_str(f'SENSe:SWEep:CTMode?') return Conversions.str_to_scalar_enum(response, enums.AutoManualMode)