from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SynchronizationCls:
"""Synchronization commands group definition. 2 total commands, 1 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("synchronization", core, parent)
@property
def execute(self):
"""execute commands group. 0 Sub-classes, 1 commands."""
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:
"""SCPI: [SOURce<HW>]:BB:MCCW:CLOCk:SYNChronization:MODE \n
Snippet: value: enums.ClocSyncMode = driver.source.bb.mccw.clock.synchronization.get_mode() \n
No command help available \n
:return: mode: 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)
[docs] def set_mode(self, mode: enums.ClocSyncMode) -> None:
"""SCPI: [SOURce<HW>]:BB:MCCW:CLOCk:SYNChronization:MODE \n
Snippet: driver.source.bb.mccw.clock.synchronization.set_mode(mode = enums.ClocSyncMode.NONE) \n
No command help available \n
:param mode: No help available
"""
param = Conversions.enum_scalar_to_str(mode, enums.ClocSyncMode)
self._core.io.write(f'SOURce<HwInstance>:BB:MCCW:CLOCk:SYNChronization:MODE {param}')
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