[docs]classEnableCls:"""Enable commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("enable",core,parent)
[docs]defset(self,bit_definition:int,channel_name:str=None)->None:"""SCPI: STATus:QUEStionable:SYNC:ENABle \n Snippet: driver.status.questionable.sync.enable.set(bit_definition = 1, channel_name = 'abc') \n Controls the ENABle part of a register. The ENABle part allows true conditions in the EVENt part of the status register to be reported in the summary bit. If a bit is 1 in the enable register and its associated event bit transitions to true, a positive transition will occur in the summary bit reported to the next higher level. \n :param bit_definition: Range: 0 to 65535 :param channel_name: String containing the name of the channel. The parameter is optional. If you omit it, the command works for the currently active channel. """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:SYNC:ENABle {param}'.rstrip())
# noinspection PyTypeChecker
[docs]classEnableStruct(StructBase):"""Response structure. Fields: \n - Bit_Definition: int: Range: 0 to 65535 - Channel_Name: str: String containing the name of the channel. The parameter is optional. If you omit it, the command works for the currently active channel."""__meta_args_list=[ArgStruct.scalar_int('Bit_Definition'),ArgStruct.scalar_str('Channel_Name')]def__init__(self):StructBase.__init__(self,self)self.Bit_Definition:int=Noneself.Channel_Name:str=None
[docs]defget(self)->EnableStruct:"""SCPI: STATus:QUEStionable:SYNC:ENABle \n Snippet: value: EnableStruct = driver.status.questionable.sync.enable.get() \n Controls the ENABle part of a register. The ENABle part allows true conditions in the EVENt part of the status register to be reported in the summary bit. If a bit is 1 in the enable register and its associated event bit transitions to true, a positive transition will occur in the summary bit reported to the next higher level. \n :return: structure: for return value, see the help for EnableStruct structure arguments."""returnself._core.io.query_struct(f'STATus:QUEStionable:SYNC:ENABle?',self.__class__.EnableStruct())