Source code for RsFsw.Implementations.Applications.K14x_Nr5G.Sense.Nr5G.Demod.CaMode

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


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

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

[docs] def set(self, mode: enums.AutoManualMode) -> None: """ ``[SENSe]:NR5G:DEMod:CAMode`` \n Snippet: ``driver.applications.k14Xnr5G.sense.nr5G.demod.caMode.set(mode = enums.AutoManualMode.AUTO)`` \n Selects the CORESET analysis mode. :param mode: AUTO Automatic demodulation of the PDCCH. MANual Demodulation based on the PDCCH configuration. """ param = Conversions.enum_scalar_to_str(mode, enums.AutoManualMode) self._core.io.write(f'SENSe:NR5G:DEMod:CAMode {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.AutoManualMode: """ ``[SENSe]:NR5G:DEMod:CAMode`` \n Snippet: ``value: enums.AutoManualMode = driver.applications.k14Xnr5G.sense.nr5G.demod.caMode.get()`` \n Selects the CORESET analysis mode. :return: mode: AUTO Automatic demodulation of the PDCCH. MANual Demodulation based on the PDCCH configuration. """ response = self._core.io.query_str(f'SENSe:NR5G:DEMod:CAMode?') return Conversions.str_to_scalar_enum(response, enums.AutoManualMode)