[docs]classDtimeCls:"""Dtime commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("dtime",core,parent)
[docs]defset(self,time:float)->None:"""SCPI: TRIGger[:SEQuence]:DTIMe \n Snippet: driver.applications.k9X11Ad.trigger.sequence.dtime.set(time = 1.0) \n Defines the time the input signal must stay below the trigger level before a trigger is detected again. For input from the 'Analog Baseband' interface using the baseband power trigger (BBP) , the default drop out time is set to 100 ns to avoid unintentional trigger events (as no hysteresis can be configured in this case) . \n :param time: Dropout time of the trigger. Range: 0 s to 10.0 s , Unit: S """param=Conversions.decimal_value_to_str(time)self._core.io.write(f'TRIGger:SEQuence:DTIMe {param}')
[docs]defget(self)->float:"""SCPI: TRIGger[:SEQuence]:DTIMe \n Snippet: value: float = driver.applications.k9X11Ad.trigger.sequence.dtime.get() \n Defines the time the input signal must stay below the trigger level before a trigger is detected again. For input from the 'Analog Baseband' interface using the baseband power trigger (BBP) , the default drop out time is set to 100 ns to avoid unintentional trigger events (as no hysteresis can be configured in this case) . \n :return: time: No help available"""response=self._core.io.query_str(f'TRIGger:SEQuence:DTIMe?')returnConversions.str_to_float(response)