Trigger

SCPI Command :

[SOURce<HW>]:LIST:TRIGger:SOURce
class TriggerCls[source]

Trigger commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get_source() RsSmw.enums.TrigSweepSourNoHopExtAuto[source]
# SCPI: [SOURce<HW>]:LIST:TRIGger:SOURce
value: enums.TrigSweepSourNoHopExtAuto = driver.source.listPy.trigger.get_source()

Selects the trigger source for processing lists. The designation of the parameters correspond to those in sweep mode. SCPI standard uses other designations for the parameters, which are also accepted by the instrument. The SCPI designation should be used if compatibility is an important consideration. For an overview, see the following table:

Table Header: Rohde & Schwarz parameter / SCPI parameter / Applies to the list mode parameters:

  • AUTO / IMMediate / [:SOURce<hw>]:LIST:MODE AUTO

  • SINGle / BUS / [:SOURce<hw>]:LIST:MODE AUTO or [:SOURce<hw>]:LIST:MODE STEP

  • EXTernal / EXTernal / [:SOURce<hw>]:LIST:MODE AUTO or [:SOURce<hw>]:LIST:MODE STEP

return

source: AUTO| IMMediate| SINGle| BUS| EXTernal AUTO|IMMediate The trigger is free-running, i.e. the trigger condition is fulfilled continuously. The selected list is restarted as soon as it is finished. SINGle|BUS The list is triggered by the command [:SOURcehw]:LIST:TRIGger:EXECute. The list is executed once. EXTernal The list is triggered externally and executed once.

set_source(source: RsSmw.enums.TrigSweepSourNoHopExtAuto) None[source]
# SCPI: [SOURce<HW>]:LIST:TRIGger:SOURce
driver.source.listPy.trigger.set_source(source = enums.TrigSweepSourNoHopExtAuto.AUTO)

Selects the trigger source for processing lists. The designation of the parameters correspond to those in sweep mode. SCPI standard uses other designations for the parameters, which are also accepted by the instrument. The SCPI designation should be used if compatibility is an important consideration. For an overview, see the following table:

Table Header: Rohde & Schwarz parameter / SCPI parameter / Applies to the list mode parameters:

  • AUTO / IMMediate / [:SOURce<hw>]:LIST:MODE AUTO

  • SINGle / BUS / [:SOURce<hw>]:LIST:MODE AUTO or [:SOURce<hw>]:LIST:MODE STEP

  • EXTernal / EXTernal / [:SOURce<hw>]:LIST:MODE AUTO or [:SOURce<hw>]:LIST:MODE STEP

param source

AUTO| IMMediate| SINGle| BUS| EXTernal AUTO|IMMediate The trigger is free-running, i.e. the trigger condition is fulfilled continuously. The selected list is restarted as soon as it is finished. SINGle|BUS The list is triggered by the command [:SOURcehw]:LIST:TRIGger:EXECute. The list is executed once. EXTernal The list is triggered externally and executed once.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.listPy.trigger.clone()

Subgroups