Trigger

SCPI Commands :

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

Trigger commands group definition. 19 total commands, 5 Subgroups, 4 group commands

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

Queries the status of signal generation for all trigger mode, if multi-carrier CW generation is on.

return

rmode: STOP| RUN

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

Selects the trigger mode. For detailed description of the trigger modes, refer to ‘Impact of the trigger modes on the signal generation’.

return

sequence: AUTO| RETRigger| AAUTo| ARETrigger| SINGle

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

Defines the length of the signal sequence to be output in the ‘Single’ trigger mode.

return

slength: integer Range: 1 to 1000, Unit: samples

get_source() RsSmbv.enums.TrigSour[source]
# SCPI: [SOURce<HW>]:BB:MCCW:TRIGger:SOURce
value: enums.TrigSour = driver.source.bb.mccw.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 User x connectors EGT1: External global trigger
    - In primary-secondary instrument mode, the external baseband synchronization signal (BBSY)
    - EXTernal: Setting only Provided only for backward compatibility with other Rohde & Schwarz signal generators. The R&S SMBV100B accepts this value and maps it automatically as follows: EXTernal = EGT1

    :return: source: INTernal| EGT1| EXTernal| BBSY
set_sequence(sequence: RsSmbv.enums.DmTrigMode) None[source]
# SCPI: [SOURce<HW>]:BB:MCCW:[TRIGger]:SEQuence
driver.source.bb.mccw.trigger.set_sequence(sequence = enums.DmTrigMode.AAUTo)

Selects the trigger mode. For detailed description of the trigger modes, refer to ‘Impact of the trigger modes on the signal generation’.

param sequence

AUTO| RETRigger| AAUTo| ARETrigger| SINGle

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

Defines the length of the signal sequence to be output in the ‘Single’ trigger mode.

param slength

integer Range: 1 to 1000, Unit: samples

set_source(source: RsSmbv.enums.TrigSour) None[source]
# SCPI: [SOURce<HW>]:BB:MCCW:TRIGger:SOURce
driver.source.bb.mccw.trigger.set_source(source = enums.TrigSour.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 User x connectors EGT1: External global trigger
    - In primary-secondary instrument mode, the external baseband synchronization signal (BBSY)
    - EXTernal: Setting only Provided only for backward compatibility with other Rohde & Schwarz signal generators. The R&S SMBV100B accepts this value and maps it automatically as follows: EXTernal = EGT1

    :param source: INTernal| EGT1| EXTernal| BBSY

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.mccw.trigger.clone()

Subgroups