Source code for RsCMPX_NrFr1Meas.Implementations.Configure.NrSubMeas.MultiEval.Modulation.EePeriods

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


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

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

	@property
	def pusch(self):
		"""
		| Commands in total: 2
		| Subgroups: 0
		| Direct child commands: 2
		"""
		if not hasattr(self, '_pusch'):
			from .Pusch import PuschCls
			self._pusch = PuschCls(self._core, self._cmd_group)
		return self._pusch

[docs] def get_pucch(self) -> bool: """ ``CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:EEPeriods:PUCCh`` \n Snippet: ``value: bool = driver.configure.nrSubMeas.multiEval.modulation.eePeriods.get_pucch()`` \n No help available """ response = self._core.io.query_str('CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:EEPeriods:PUCCh?') return Conversions.str_to_bool(response)
[docs] def set_pucch(self, pucch: bool) -> None: """ ``CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:EEPeriods:PUCCh`` \n Snippet: ``driver.configure.nrSubMeas.multiEval.modulation.eePeriods.set_pucch(pucch = False)`` \n No help available """ param = Conversions.bool_to_str(pucch) self._core.io.write(f'CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:EEPeriods:PUCCh {param}')
def clone(self) -> 'EePeriodsCls': """ Clones the group by creating new object from it and its whole existing subgroups. Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group. """ new_group = EePeriodsCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group