from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal.Types import DataType
from .....Internal.StructBase import StructBase
from .....Internal.ArgStruct import ArgStruct
from .....Internal.ArgSingleList import ArgSingleList
from .....Internal.ArgSingle import ArgSingle
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class EnableCls:
"""Enable commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("enable", core, parent)
[docs] def set(self, bit_definition: int, channel_name: str = None) -> None:
"""SCPI: STATus:QUEStionable:INTegrity:ENABle \n
Snippet: driver.status.questionable.integrity.enable.set(bit_definition = 1, channel_name = 'abc') \n
No command help available \n
:param bit_definition: No help available
:param channel_name: No help available
"""
param = ArgSingleList().compose_cmd_string(ArgSingle('bit_definition', bit_definition, DataType.Integer), ArgSingle('channel_name', channel_name, DataType.String, None, is_optional=True))
self._core.io.write(f'STATus:QUEStionable:INTegrity:ENABle {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class EnableStruct(StructBase):
"""Response structure. Fields: \n
- Bit_Definition: int: No parameter help available
- Channel_Name: str: No parameter help available"""
__meta_args_list = [
ArgStruct.scalar_int('Bit_Definition'),
ArgStruct.scalar_str('Channel_Name')]
def __init__(self):
StructBase.__init__(self, self)
self.Bit_Definition: int = None
self.Channel_Name: str = None
[docs] def get(self) -> EnableStruct:
"""SCPI: STATus:QUEStionable:INTegrity:ENABle \n
Snippet: value: EnableStruct = driver.status.questionable.integrity.enable.get() \n
No command help available \n
:return: structure: for return value, see the help for EnableStruct structure arguments."""
return self._core.io.query_struct(f'STATus:QUEStionable:INTegrity:ENABle?', self.__class__.EnableStruct())