from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DtimeCls:
"""Dtime commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("dtime", core, parent)
[docs] def set(self, dropout_time: float, triggerPort=repcap.TriggerPort.Default) -> None:
"""SCPI: TRIGger<tp>[:SEQuence]:DTIMe \n
Snippet: driver.applications.k70Vsa.trigger.sequence.dtime.set(dropout_time = 1.0, triggerPort = repcap.TriggerPort.Default) \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 dropout_time: Dropout time of the trigger. Range: 0 s to 10.0 s , Unit: S
:param triggerPort: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trigger')
"""
param = Conversions.decimal_value_to_str(dropout_time)
triggerPort_cmd_val = self._cmd_group.get_repcap_cmd_value(triggerPort, repcap.TriggerPort)
self._core.io.write(f'TRIGger{triggerPort_cmd_val}:SEQuence:DTIMe {param}')
[docs] def get(self, triggerPort=repcap.TriggerPort.Default) -> float:
"""SCPI: TRIGger<tp>[:SEQuence]:DTIMe \n
Snippet: value: float = driver.applications.k70Vsa.trigger.sequence.dtime.get(triggerPort = repcap.TriggerPort.Default) \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 triggerPort: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trigger')
:return: dropout_time: Dropout time of the trigger. Range: 0 s to 10.0 s , Unit: S"""
triggerPort_cmd_val = self._cmd_group.get_repcap_cmd_value(triggerPort, repcap.TriggerPort)
response = self._core.io.query_str(f'TRIGger{triggerPort_cmd_val}:SEQuence:DTIMe?')
return Conversions.str_to_float(response)