from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class StatusCls:
"""
| Commands in total: 112
| Subgroups: 3
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("status", core, parent)
@property
def operation(self):
"""
| Commands in total: 10
| Subgroups: 6
| Direct child commands: 0
"""
if not hasattr(self, '_operation'):
from .Operation import OperationCls
self._operation = OperationCls(self._core, self._cmd_group)
return self._operation
@property
def questionable(self):
"""
| Commands in total: 100
| Subgroups: 20
| Direct child commands: 0
"""
if not hasattr(self, '_questionable'):
from .Questionable import QuestionableCls
self._questionable = QuestionableCls(self._core, self._cmd_group)
return self._questionable
@property
def queue(self):
"""
| Commands in total: 1
| Subgroups: 1
| Direct child commands: 0
"""
if not hasattr(self, '_queue'):
from .Queue import QueueCls
self._queue = QueueCls(self._core, self._cmd_group)
return self._queue
[docs]
def preset(self) -> None:
"""
``STATus:PRESet`` \n
Snippet: ``driver.status.preset()`` \n
Resets the edge detectors and ENABle parts of all registers to a defined value. All PTRansition parts are set to FFFFh, i.
e. all transitions from 0 to 1 are detected. All NTRansition parts are set to 0, i.e. a transition from 1 to 0 in a
CONDition bit is not detected. The ENABle part of the method ``RsFsw.status.operation.event.get()`` and method
``RsFsw.status.questionable.event.get()`` registers are set to 0, i.e. all events in these registers are not passed on.
"""
self._core.io.write(f'STATus:PRESet')
[docs]
def preset_with_opc(self, opc_timeout_ms: int = -1) -> None:
"""
``STATus:PRESet`` \n
Snippet: ``driver.status.preset_with_opc()`` \n
Resets the edge detectors and ENABle parts of all registers to a defined value. All PTRansition parts are set to FFFFh, i.
e. all transitions from 0 to 1 are detected. All NTRansition parts are set to 0, i.e. a transition from 1 to 0 in a
CONDition bit is not detected. The ENABle part of the method ``RsFsw.status.operation.event.get()`` and method
``RsFsw.status.questionable.event.get()`` registers are set to 0, i.e. all events in these registers are not passed on.
Same as preset, 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'STATus:PRESet', opc_timeout_ms)
def clone(self) -> 'StatusCls':
"""
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 = StatusCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group