Source code for RsFsw.Implementations.Output.Trigger.Otype

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
from .... import enums
from .... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class OtypeCls: """Otype commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("otype", core, parent)
[docs] def set(self, output_type: enums.OutputType, triggerPort=repcap.TriggerPort.Default) -> None: """SCPI: OUTPut:TRIGger<tp>:OTYPe \n Snippet: driver.output.trigger.otype.set(output_type = enums.OutputType.DEVice, triggerPort = repcap.TriggerPort.Default) \n Selects the type of signal generated at the trigger output. Note: For offline AF or RF triggers, no output signal is provided. \n :param output_type: DEVice Sends a trigger signal when the FSW has triggered internally. TARMed Sends a trigger signal when the trigger is armed and ready for an external trigger event. UDEFined Sends a user-defined trigger signal. For more information, see method RsFsw.Applications.K10x_Lte.Output.Trigger.Level.set. :param triggerPort: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trigger') """ param = Conversions.enum_scalar_to_str(output_type, enums.OutputType) triggerPort_cmd_val = self._cmd_group.get_repcap_cmd_value(triggerPort, repcap.TriggerPort) self._core.io.write(f'OUTPut:TRIGger{triggerPort_cmd_val}:OTYPe {param}')
# noinspection PyTypeChecker
[docs] def get(self, triggerPort=repcap.TriggerPort.Default) -> enums.OutputType: """SCPI: OUTPut:TRIGger<tp>:OTYPe \n Snippet: value: enums.OutputType = driver.output.trigger.otype.get(triggerPort = repcap.TriggerPort.Default) \n Selects the type of signal generated at the trigger output. Note: For offline AF or RF triggers, no output signal is provided. \n :param triggerPort: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trigger') :return: output_type: DEVice Sends a trigger signal when the FSW has triggered internally. TARMed Sends a trigger signal when the trigger is armed and ready for an external trigger event. UDEFined Sends a user-defined trigger signal. For more information, see method RsFsw.Applications.K10x_Lte.Output.Trigger.Level.set.""" triggerPort_cmd_val = self._cmd_group.get_repcap_cmd_value(triggerPort, repcap.TriggerPort) response = self._core.io.query_str(f'OUTPut:TRIGger{triggerPort_cmd_val}:OTYPe?') return Conversions.str_to_scalar_enum(response, enums.OutputType)