Mode

SCPI Command :

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

Selects the lines or fields on which the instrument can trigger. Available modes depend on the scanning system.

Parameters:

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

Returns:

mode: ALL | ODD | EVEN | ALINe | LINE

  • ALL: All fields, triggers on the frame start (progressive scanning) or field start (interlaced and progressive segmented frame scanning)

  • ODD | EVEN: Only available for interlaced scanning and progressive segmented frame scanning. Triggers on the field start of the odd or even field.

  • ALINe: All lines, triggers on all line starts.

  • LINE: Triggers on a specified line. To set the line number, use TRIGgert:TV:LINE. For NTSC signals, set also the field with TRIGgert:TV:LFIeld.

set(mode: TriggerTvMode, trigger=Trigger.Default) None[source]
# TRIGger<*>:TV:MODE
driver.trigger.tv.mode.set(mode = enums.TriggerTvMode.ALINe, trigger = repcap.Trigger.Default)

Selects the lines or fields on which the instrument can trigger. Available modes depend on the scanning system.

Parameters:
  • mode

    ALL | ODD | EVEN | ALINe | LINE

    • ALL: All fields, triggers on the frame start (progressive scanning) or field start (interlaced and progressive segmented frame scanning)

    • ODD | EVEN: Only available for interlaced scanning and progressive segmented frame scanning. Triggers on the field start of the odd or even field.

    • ALINe: All lines, triggers on all line starts.

    • LINE: Triggers on a specified line. To set the line number, use TRIGgert:TV:LINE. For NTSC signals, set also the field with TRIGgert:TV:LFIeld.

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