Trigger

SCPI Commands :

[SOURce<HW>]:BB:OFDM:TRIGger:RMODe
[SOURce<HW>]:BB:OFDM:TRIGger:SLENgth
[SOURce<HW>]:BB:OFDM:TRIGger:SLUNit
[SOURce<HW>]:BB:OFDM:TRIGger:SOURce
[SOURce<HW>]:BB:OFDM:[TRIGger]:SEQuence
class TriggerCls[source]

Trigger commands group definition. 27 total commands, 7 Subgroups, 5 group commands

get_rmode() TrigRunMode[source]
# SCPI: [SOURce<HW>]:BB:OFDM:TRIGger:RMODe
value: enums.TrigRunMode = driver.source.bb.ofdm.trigger.get_rmode()

Queries the status of waveform output.

return:

trig_run_mode: STOP| RUN

get_sequence() DmTrigMode[source]
# SCPI: [SOURce<HW>]:BB:OFDM:[TRIGger]:SEQuence
value: enums.DmTrigMode = driver.source.bb.ofdm.trigger.get_sequence()

Sets the trigger mode.

return:

trig_mode: AUTO| RETRigger| AAUTo| ARETrigger| SINGle

get_sl_unit() UnitSlB[source]
# SCPI: [SOURce<HW>]:BB:OFDM:TRIGger:SLUNit
value: enums.UnitSlB = driver.source.bb.ofdm.trigger.get_sl_unit()

Defines the unit for the entry of the length of the signal sequence to be output in the SINGle trigger mode.

return:

trig_seq_len_unit: SEQuence| SAMPle

get_slength() int[source]
# SCPI: [SOURce<HW>]:BB:OFDM:TRIGger:SLENgth
value: int = driver.source.bb.ofdm.trigger.get_slength()

Defines the length of the signal sequence to be output in the SINGle trigger mode.

return:

trig_seq_len: integer Range: 1 to dynamic

get_source() TriggerSourceC[source]
# SCPI: [SOURce<HW>]:BB:OFDM:TRIGger:SOURce
value: enums.TriggerSourceC = driver.source.bb.ofdm.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:OFDM:[TRIGger]:SEQuence
driver.source.bb.ofdm.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:OFDM:TRIGger:SLUNit
driver.source.bb.ofdm.trigger.set_sl_unit(trig_seq_len_unit = enums.UnitSlB.SAMPle)

Defines the unit for the entry of the length of the signal sequence to be output in the SINGle trigger mode.

param trig_seq_len_unit:

SEQuence| SAMPle

set_slength(trig_seq_len: int) None[source]
# SCPI: [SOURce<HW>]:BB:OFDM:TRIGger:SLENgth
driver.source.bb.ofdm.trigger.set_slength(trig_seq_len = 1)

Defines the length of the signal sequence to be output in the SINGle trigger mode.

param trig_seq_len:

integer Range: 1 to dynamic

set_source(trig_source: TriggerSourceC) None[source]
# SCPI: [SOURce<HW>]:BB:OFDM:TRIGger:SOURce
driver.source.bb.ofdm.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.ofdm.trigger.clone()

Subgroups