Trigger
SCPI Command :
[SOURce<HW>]:LIST:TRIGger:SOURce
- Commands in total: 2Subgroups: 1Direct child commands: 1
- get_source() TrigSweepSourNoHopExtAuto[source]
# [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: 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
- Returns:
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 method
RsSmw.source.listPy.trigger.execute.set(). The list is executed once. EXTernal The list is triggered externally and executed once.
- set_source(source: TrigSweepSourNoHopExtAuto) None[source]
# [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: 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
- Parameters:
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 method
RsSmw.source.listPy.trigger.execute.set(). The list is executed once. EXTernal The list is triggered externally and executed once.
Cloning the Group
# Create a copy of the original group, that exists independently
trigger_copy = driver.source.listPy.trigger.clone()
Subgroups