from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class LevelCls:
"""
| Commands in total: 2
| Subgroups: 1
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("level", core, parent)
@property
def all(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_all'):
from .All import AllCls
self._all = AllCls(self._core, self._cmd_group)
return self._all
[docs]
def set(self) -> None:
"""
``[SENSe]:ADJust:LEVel`` \n
Snippet: ``driver.applications.k14Xnr5G.sense.adjust.level.set()`` \n
Initiates a single (internal) measurement that evaluates and sets the ideal reference level for the current input data
and measurement settings. Thus, the settings of the RF attenuation and the reference level are optimized for the signal
level. The FSW is not overloaded and the dynamic range is not limited by an S/N ratio that is too small.
"""
self._core.io.write(f'SENSe:ADJust:LEVel')
[docs]
def set_with_opc(self, opc_timeout_ms: int = -1) -> None:
"""
``[SENSe]:ADJust:LEVel`` \n
Snippet: ``driver.applications.k14Xnr5G.sense.adjust.level.set_with_opc()`` \n
Initiates a single (internal) measurement that evaluates and sets the ideal reference level for the current input data
and measurement settings. Thus, the settings of the RF attenuation and the reference level are optimized for the signal
level. The FSW is not overloaded and the dynamic range is not limited by an S/N ratio that is too small.
Same as set, but waits for the operation to complete before continuing further. Use the RsFsw.utilities.opc_timeout_set() to set the timeout value.
:param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.
"""
self._core.io.write_with_opc(f'SENSe:ADJust:LEVel', opc_timeout_ms)
def clone(self) -> 'LevelCls':
"""
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 = LevelCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group