Source code for RsSmw.Implementations.Source.Bb.Mccw.Clock.Synchronization

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


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

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

	@property
	def execute(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_execute'):
			from .Execute import ExecuteCls
			self._execute = ExecuteCls(self._core, self._cmd_group)
		return self._execute

	# noinspection PyTypeChecker
[docs] def get_mode(self) -> enums.ClocSyncMode: """ ``[SOURce<HW>]:BB:MCCW:CLOCk:SYNChronization:MODE`` \n Snippet: ``value: enums.ClocSyncMode = driver.source.bb.mccw.clock.synchronization.get_mode()`` \n No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:MCCW:CLOCk:SYNChronization:MODE?') return Conversions.str_to_scalar_enum(response, enums.ClocSyncMode)
def clone(self) -> 'SynchronizationCls': """ 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 = SynchronizationCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group