from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup
from ...Internal import Conversions
from ...Internal.Utilities import trim_str_response
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StatusCls:
"""Status commands group definition. 22 total commands, 3 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("status", core, parent)
@property
def operation(self):
"""operation commands group. 1 Sub-classes, 5 commands."""
if not hasattr(self, '_operation'):
from .Operation import OperationCls
self._operation = OperationCls(self._core, self._cmd_group)
return self._operation
@property
def questionable(self):
"""questionable commands group. 1 Sub-classes, 5 commands."""
if not hasattr(self, '_questionable'):
from .Questionable import QuestionableCls
self._questionable = QuestionableCls(self._core, self._cmd_group)
return self._questionable
@property
def queue(self):
"""queue commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_queue'):
from .Queue import QueueCls
self._queue = QueueCls(self._core, self._cmd_group)
return self._queue
[docs] def get_preset(self) -> str:
"""SCPI: STATus:PRESet \n
Snippet: value: str = driver.status.get_preset() \n
Resets the status registers. All PTRansition parts are set to FFFFh (32767) , 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 parts of STATus:OPERation and STATus:QUEStionable are set to 0, i.e. all events in these registers are not
passed on. \n
:return: preset: string
"""
response = self._core.io.query_str('STATus:PRESet?')
return trim_str_response(response)
[docs] def set_preset(self, preset: str) -> None:
"""SCPI: STATus:PRESet \n
Snippet: driver.status.set_preset(preset = 'abc') \n
Resets the status registers. All PTRansition parts are set to FFFFh (32767) , 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 parts of STATus:OPERation and STATus:QUEStionable are set to 0, i.e. all events in these registers are not
passed on. \n
:param preset: string
"""
param = Conversions.value_to_quoted_str(preset)
self._core.io.write(f'STATus:PRESet {param}')
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