Trigger
SCPI Commands :
[SOURce<HW>]:BB:DM:TRIGger:RMODe
[SOURce<HW>]:BB:DM:TRIGger:SLENgth
[SOURce<HW>]:BB:DM:TRIGger:SOURce
[SOURce<HW>]:BB:DM:[TRIGger]:SEQuence
- class TriggerCls[source]
Trigger commands group definition. 26 total commands, 7 Subgroups, 4 group commands
- get_rmode() TrigRunMode [source]
# SCPI: [SOURce<HW>]:BB:DM:TRIGger:RMODe value: enums.TrigRunMode = driver.source.bb.dm.trigger.get_rmode()
Queries the status of signal generation.
- return:
rmode: STOP| RUN
- get_sequence() DmTrigMode [source]
# SCPI: [SOURce<HW>]:BB:DM:[TRIGger]:SEQuence value: enums.DmTrigMode = driver.source.bb.dm.trigger.get_sequence()
Selects the trigger mode. See also ‘About trigger modes’.
- return:
sequence: AUTO| RETRigger| AAUTo| ARETrigger| SINGle
- get_slength() int [source]
# SCPI: [SOURce<HW>]:BB:DM:TRIGger:SLENgth value: int = driver.source.bb.dm.trigger.get_slength()
Defines the length of the signal sequence to be output in the SINGle trigger mode.
- return:
slength: integer Range: 1 to 4294967295, Unit: symbol
- get_source() TriggerSourceC [source]
# SCPI: [SOURce<HW>]:BB:DM:TRIGger:SOURce value: enums.TriggerSourceC = driver.source.bb.dm.trigger.get_source() INTRO_CMD_HELP: Selects the trigger signal source and determines the way the triggering is executed. Provided are the following trigger sources: - INTernal: Internal manual triggering of the instrument - INTA|INTB: Internal triggering by a signal from the other basebands - External trigger signal via one of the local or global connectors: Table Header: - EGT1|EGT2: External global trigger - EGC1|EGC2: External global clock - ELTRigger: External local trigger - ELCLock: External local clock - For secondary instruments (SCONfiguration:MULTiinstrument:MODE SEC) , triggering
- via the external baseband synchronization signal of the primary instrument: SOURce1:BB:ARB:TRIGger:SOURce BBSY
OBASeband|BEXTernal|EXTernal: Setting only Provided only for backward
compatibility with other Rohde & Schwarz signal generators. The R&S SMW200A accepts these values and maps them automatically as follows: EXTernal = EGT1, BEXTernal = EGT2, OBASeband = INTA or INTB (depending on the current baseband)
- return:
source: INTB| INTernal| OBASeband| EGT1| EGT2| EGC1| EGC2| ELTRigger| INTA| ELCLock| BEXTernal| EXTernal | BBSY
- set_sequence(sequence: DmTrigMode) None [source]
# SCPI: [SOURce<HW>]:BB:DM:[TRIGger]:SEQuence driver.source.bb.dm.trigger.set_sequence(sequence = enums.DmTrigMode.AAUTo)
Selects the trigger mode. See also ‘About trigger modes’.
- param sequence:
AUTO| RETRigger| AAUTo| ARETrigger| SINGle
- set_slength(slength: int) None [source]
# SCPI: [SOURce<HW>]:BB:DM:TRIGger:SLENgth driver.source.bb.dm.trigger.set_slength(slength = 1)
Defines the length of the signal sequence to be output in the SINGle trigger mode.
- param slength:
integer Range: 1 to 4294967295, Unit: symbol
- set_source(source: TriggerSourceC) None [source]
# SCPI: [SOURce<HW>]:BB:DM:TRIGger:SOURce driver.source.bb.dm.trigger.set_source(source = enums.TriggerSourceC.BBSY) INTRO_CMD_HELP: Selects the trigger signal source and determines the way the triggering is executed. Provided are the following trigger sources: - INTernal: Internal manual triggering of the instrument - INTA|INTB: Internal triggering by a signal from the other basebands - External trigger signal via one of the local or global connectors: Table Header: - EGT1|EGT2: External global trigger - EGC1|EGC2: External global clock - ELTRigger: External local trigger - ELCLock: External local clock - For secondary instruments (SCONfiguration:MULTiinstrument:MODE SEC) , triggering
- via the external baseband synchronization signal of the primary instrument: SOURce1:BB:ARB:TRIGger:SOURce BBSY
OBASeband|BEXTernal|EXTernal: Setting only Provided only for backward
compatibility with other Rohde & Schwarz signal generators. The R&S SMW200A accepts these values and maps them automatically as follows: EXTernal = EGT1, BEXTernal = EGT2, OBASeband = INTA or INTB (depending on the current baseband)
- param source:
INTB| INTernal| OBASeband| EGT1| EGT2| EGC1| EGC2| ELTRigger| INTA| ELCLock| BEXTernal| EXTernal | BBSY
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.dm.trigger.clone()
Subgroups