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() RsSmw.enums.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() RsSmw.enums.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() RsSmw.enums.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:

    - Internal triggering by a command (INTernal)
    - 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
    - Internal triggering by a signal from the other basebands (INTA|INTB)
    - In primary-secondary instrument mode, the external baseband synchronization
signal (BBSY)
  • OBASeband|BEXTernal|EXTernal: Setting only Provided only for backward

compatibility with other Rohde & Schwarz signal generators. The R&S SMW 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: RsSmw.enums.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: RsSmw.enums.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:

    - Internal triggering by a command (INTernal)
    - 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
    - Internal triggering by a signal from the other basebands (INTA|INTB)
    - In primary-secondary instrument mode, the external baseband synchronization
signal (BBSY)
  • OBASeband|BEXTernal|EXTernal: Setting only Provided only for backward

compatibility with other Rohde & Schwarz signal generators. The R&S SMW 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