Mode

SCPI Command :

TRIGger<*>:HOLDoff:MODE
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(trigger=Trigger.Default) TriggerHoldoffMode[source]
# TRIGger<*>:HOLDoff:MODE
value: enums.TriggerHoldoffMode = driver.trigger.holdoff.mode.get(trigger = repcap.Trigger.Default)

Selects the method to define the holdoff condition. The trigger holdoff defines when the next trigger after the current will be recognized. Thus, it affects the next trigger to occur after the current one. Holdoff helps to obtain stable triggering when the oscilloscope is triggering on undesired events. Holdoff settings are not available at the following conditions:

  • The trigger source is an external trigger input.

  • The trigger source is a serial bus.

  • The trigger type is serial pattern or CDR.

Parameters:

trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)

Returns:

mode: TIME | EVENts | RANDom | AUTO | OFF

  • TIME: Defines the holdoff directly as a time period. The next trigger occurs only after the Holdoff time has passed (defined using TRIGgert:HOLDoff:TIME) .

  • EVENts: Defines the holdoff as a number of trigger events. The next trigger occurs only when this number of events is reached. The number of triggers to be skipped is defined using TRIGgert:HOLDoff:EVENts.

  • RANDom: Defines the holdoff as a random time limited by TRIGgert:HOLDoff:MIN and TRIGgert:HOLDoff:MAX. For each acquisition period, the instrument selects a new random holdoff time from the specified range.

  • AUTO: The holdoff time is calculated automatically based on the current horizontal scale.

  • OFF: No holdoff

set(mode: TriggerHoldoffMode, trigger=Trigger.Default) None[source]
# TRIGger<*>:HOLDoff:MODE
driver.trigger.holdoff.mode.set(mode = enums.TriggerHoldoffMode.AUTO, trigger = repcap.Trigger.Default)

Selects the method to define the holdoff condition. The trigger holdoff defines when the next trigger after the current will be recognized. Thus, it affects the next trigger to occur after the current one. Holdoff helps to obtain stable triggering when the oscilloscope is triggering on undesired events. Holdoff settings are not available at the following conditions:

  • The trigger source is an external trigger input.

  • The trigger source is a serial bus.

  • The trigger type is serial pattern or CDR.

Parameters:
  • mode

    TIME | EVENts | RANDom | AUTO | OFF

    • TIME: Defines the holdoff directly as a time period. The next trigger occurs only after the Holdoff time has passed (defined using TRIGgert:HOLDoff:TIME) .

    • EVENts: Defines the holdoff as a number of trigger events. The next trigger occurs only when this number of events is reached. The number of triggers to be skipped is defined using TRIGgert:HOLDoff:EVENts.

    • RANDom: Defines the holdoff as a random time limited by TRIGgert:HOLDoff:MIN and TRIGgert:HOLDoff:MAX. For each acquisition period, the instrument selects a new random holdoff time from the specified range.

    • AUTO: The holdoff time is calculated automatically based on the current horizontal scale.

    • OFF: No holdoff

  • trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)