Source code for RsCMPX_Base.Implementations.Status.Event.Bits

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal.Types import DataType
from .....Internal.ArgSingleList import ArgSingleList
from .....Internal.ArgSingle import ArgSingle
from ..... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class BitsCls: """Bits commands group definition. 4 total commands, 3 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("bits", core, parent) @property def all(self): """all commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_all'): from .All import AllCls self._all = AllCls(self._core, self._cmd_group) return self._all @property def count(self): """count commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_count'): from .Count import CountCls self._count = CountCls(self._core, self._cmd_group) return self._count @property def next(self): """next commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_next'): from .Next import NextCls self._next = NextCls(self._core, self._cmd_group) return self._next
[docs] def clear(self, filter_py: str = None, mode: enums.ExpressionMode = None) -> None: """SCPI: STATus:EVENt:BITS:CLEar \n Snippet: driver.status.event.bits.clear(filter_py = 'abc', mode = enums.ExpressionMode.REGex) \n No command help available \n :param filter_py: No help available :param mode: No help available """ param = ArgSingleList().compose_cmd_string(ArgSingle('filter_py', filter_py, DataType.String, None, is_optional=True), ArgSingle('mode', mode, DataType.Enum, enums.ExpressionMode, is_optional=True)) self._core.io.write(f'STATus:EVENt:BITS:CLEar {param}'.rstrip())
def clone(self) -> 'BitsCls': """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 = BitsCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group