Trigger
SCPI Commands :
[SOURce<HW>]:BB:NR5G:TRIGger:RMODe
[SOURce<HW>]:BB:NR5G:TRIGger:SLENgth
[SOURce<HW>]:BB:NR5G:TRIGger:SLUNit
[SOURce<HW>]:BB:NR5G:TRIGger:SOURce
[SOURce<HW>]:BB:NR5G:[TRIGger]:SEQuence
- class TriggerCls[source]
Trigger commands group definition. 44 total commands, 7 Subgroups, 5 group commands
- get_rmode() TrigRunMode [source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:RMODe value: enums.TrigRunMode = driver.source.bb.nr5G.trigger.get_rmode()
Queries the signal generation status.
- return:
trig_run_mode: STOP| RUN
- get_sequence() DmTrigMode [source]
# SCPI: [SOURce<HW>]:BB:NR5G:[TRIGger]:SEQuence value: enums.DmTrigMode = driver.source.bb.nr5G.trigger.get_sequence()
Sets the trigger mode.
- return:
trig_mode: AUTO| RETRigger| AAUTo| ARETrigger| SINGle
- get_sl_unit() UnitSlB [source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:SLUNit value: enums.UnitSlB = driver.source.bb.nr5G.trigger.get_sl_unit()
Defines the unit for the entry of the signal sequence length.
- return:
trig_seq_len_unit: SEQuence| SAMPle
- get_slength() int [source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:SLENgth value: int = driver.source.bb.nr5G.trigger.get_slength()
Defines the length of the signal sequence that is output in the SINGle trigger mode.
- return:
trig_seq_len: integer Range: 1 to dynamic
- get_source() TriggerSourceC [source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:SOURce value: enums.TriggerSourceC = driver.source.bb.nr5G.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:
trig_source: INTB| INTernal| OBASeband| EGT1| EGT2| EGC1| EGC2| ELTRigger| INTA| ELCLock| BEXTernal| EXTernal | BBSY
- set_sequence(trig_mode: DmTrigMode) None [source]
# SCPI: [SOURce<HW>]:BB:NR5G:[TRIGger]:SEQuence driver.source.bb.nr5G.trigger.set_sequence(trig_mode = enums.DmTrigMode.AAUTo)
Sets the trigger mode.
- param trig_mode:
AUTO| RETRigger| AAUTo| ARETrigger| SINGle
- set_sl_unit(trig_seq_len_unit: UnitSlB) None [source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:SLUNit driver.source.bb.nr5G.trigger.set_sl_unit(trig_seq_len_unit = enums.UnitSlB.SAMPle)
Defines the unit for the entry of the signal sequence length.
- param trig_seq_len_unit:
SEQuence| SAMPle
- set_source(trig_source: TriggerSourceC) None [source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:SOURce driver.source.bb.nr5G.trigger.set_source(trig_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 trig_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.nr5G.trigger.clone()
Subgroups