Trigger
SCPI Commands :
[SOURce<HW>]:BB:ESEQuencer:TRIGger:RMODe
[SOURce<HW>]:BB:ESEQuencer:TRIGger:SOURce
[SOURce<HW>]:BB:ESEQuencer:[TRIGger]:SEQuence
- Commands in total: 24Subgroups: 7Direct child commands: 3
- get_rmode() TrigRunMode[source]
# [SOURce<HW>]:BB:ESEQuencer:TRIGger:RMODe value: enums.TrigRunMode = driver.source.bb.esequencer.trigger.get_rmode()
Queries the signal generation status.
- Returns:
running_mode: STOP | RUN
- get_sequence() DmTrigMode[source]
# [SOURce<HW>]:BB:ESEQuencer:[TRIGger]:SEQuence value: enums.DmTrigMode = driver.source.bb.esequencer.trigger.get_sequence()
Selects the trigger mode:
AUTO = auto
RETRigger = retrigger
AAUTo = armed auto
ARETrigger = armed retrigger
SINGle = single
- Returns:
sequence: AUTO | RETRigger | AAUTo | ARETrigger | SINGle For method
RsSmw.source.bb.esequencer.mode()USER | PSEQuencer | DFINding: AUTO | RETRigger | AAUTo | ARETrigger | SINGle For methodRsSmw.source.bb.esequencer.mode()RTCI: AUTO | AAUTo
- get_source() TrigSour[source]
# [SOURce<HW>]:BB:ESEQuencer:TRIGger:SOURce value: enums.TrigSour = driver.source.bb.esequencer.trigger.get_source()
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:
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)
- Returns:
source: INTB | INTernal | OBASeband | EGT1 | EGT2 | EGC1 | EGC2 | ELTRigger | INTA | ELCLock | BEXTernal | EXTernal | BBSY | EGT3 | EGT4
- set_sequence(sequence: DmTrigMode) None[source]
# [SOURce<HW>]:BB:ESEQuencer:[TRIGger]:SEQuence driver.source.bb.esequencer.trigger.set_sequence(sequence = enums.DmTrigMode.AAUTo)
Selects the trigger mode:
AUTO = auto
RETRigger = retrigger
AAUTo = armed auto
ARETrigger = armed retrigger
SINGle = single
- Parameters:
sequence – AUTO | RETRigger | AAUTo | ARETrigger | SINGle For method
RsSmw.source.bb.esequencer.mode()USER | PSEQuencer | DFINding: AUTO | RETRigger | AAUTo | ARETrigger | SINGle For methodRsSmw.source.bb.esequencer.mode()RTCI: AUTO | AAUTo
- set_source(source: TrigSour) None[source]
# [SOURce<HW>]:BB:ESEQuencer:TRIGger:SOURce driver.source.bb.esequencer.trigger.set_source(source = enums.TrigSour.BBSY)
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:
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)
- Parameters:
source – INTB | INTernal | OBASeband | EGT1 | EGT2 | EGC1 | EGC2 | ELTRigger | INTA | ELCLock | BEXTernal | EXTernal | BBSY | EGT3 | EGT4
Cloning the Group
# Create a copy of the original group, that exists independently
trigger_copy = driver.source.bb.esequencer.trigger.clone()
Subgroups