Trigger
SCPI Commands :
[SOURce<HW>]:BB:ESEQuencer:TRIGger:RMODe
[SOURce<HW>]:BB:ESEQuencer:TRIGger:SOURce
[SOURce<HW>]:BB:ESEQuencer:[TRIGger]:SEQuence
- class TriggerCls[source]
Trigger commands group definition. 24 total commands, 7 Subgroups, 3 group commands
- get_rmode() TrigRunMode [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:TRIGger:RMODe value: enums.TrigRunMode = driver.source.bb.esequencer.trigger.get_rmode()
Queries the signal generation status.
- return:
running_mode: STOP| RUN
- get_sequence() DmTrigMode [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:[TRIGger]:SEQuence value: enums.DmTrigMode = driver.source.bb.esequencer.trigger.get_sequence() INTRO_CMD_HELP: Selects the trigger mode: - AUTO = auto - RETRigger = retrigger - AAUTo = armed auto - ARETrigger = armed retrigger - SINGle = single :return: sequence: AUTO| RETRigger| AAUTo| ARETrigger| SINGle For [:SOURcehw]:BB:ESEQuencer:MODE USER|PSEQuencer|DFINding: AUTO|RETRigger|AAUTo|ARETrigger|SINGle For [:SOURcehw]:BB:ESEQuencer:MODE RTCI: AUTO|AAUTo
- get_source() TriggerSourceC [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:TRIGger:SOURce value: enums.TriggerSourceC = driver.source.bb.esequencer.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:ESEQuencer:[TRIGger]:SEQuence driver.source.bb.esequencer.trigger.set_sequence(sequence = enums.DmTrigMode.AAUTo) INTRO_CMD_HELP: Selects the trigger mode: - AUTO = auto - RETRigger = retrigger - AAUTo = armed auto - ARETrigger = armed retrigger - SINGle = single :param sequence: AUTO| RETRigger| AAUTo| ARETrigger| SINGle For [:SOURcehw]:BB:ESEQuencer:MODE USER|PSEQuencer|DFINding: AUTO|RETRigger|AAUTo|ARETrigger|SINGle For [:SOURcehw]:BB:ESEQuencer:MODE RTCI: AUTO|AAUTo
- set_source(source: TriggerSourceC) None [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:TRIGger:SOURce driver.source.bb.esequencer.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.esequencer.trigger.clone()
Subgroups