Trigger
SCPI Commands :
[SOURce<HW>]:BB:GNSS:TRIGger:RMODe
[SOURce<HW>]:BB:GNSS:TRIGger:SLENgth
[SOURce<HW>]:BB:GNSS:TRIGger:SOURce
[SOURce<HW>]:BB:GNSS:[TRIGger]:SEQuence
- Commands in total: 22Subgroups: 5Direct child commands: 4
- get_rmode() TrigRunMode[source]
# [SOURce<HW>]:BB:GNSS:TRIGger:RMODe value: enums.TrigRunMode = driver.source.bb.gnss.trigger.get_rmode()
Queries the status of waveform output.
- Returns:
rmode: STOP | RUN
- get_sequence() DmTrigMode[source]
# [SOURce<HW>]:BB:GNSS:[TRIGger]:SEQuence value: enums.DmTrigMode = driver.source.bb.gnss.trigger.get_sequence()
Selects the trigger mode.
- Returns:
sequence: AUTO | RETRigger | AAUTo | ARETrigger | SINGle
- get_slength() float[source]
# [SOURce<HW>]:BB:GNSS:TRIGger:SLENgth value: float = driver.source.bb.gnss.trigger.get_slength()
Defines the length of the signal sequence to be output in the SINGle trigger mode.
- Returns:
slength: float Range: 0.001 to 46.648730700, Unit: s
- get_source() TrigSour[source]
# [SOURce<HW>]:BB:GNSS:TRIGger:SOURce value: enums.TrigSour = driver.source.bb.gnss.trigger.get_source()
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
- Returns:
source: INTernal | EGT1 | EXTernal | BBSY
- set_sequence(sequence: DmTrigMode) None[source]
# [SOURce<HW>]:BB:GNSS:[TRIGger]:SEQuence driver.source.bb.gnss.trigger.set_sequence(sequence = enums.DmTrigMode.AAUTo)
Selects the trigger mode.
- Parameters:
sequence – AUTO | RETRigger | AAUTo | ARETrigger | SINGle
- set_slength(slength: float) None[source]
# [SOURce<HW>]:BB:GNSS:TRIGger:SLENgth driver.source.bb.gnss.trigger.set_slength(slength = 1.0)
Defines the length of the signal sequence to be output in the SINGle trigger mode.
- Parameters:
slength – float Range: 0.001 to 46.648730700, Unit: s
- set_source(source: TrigSour) None[source]
# [SOURce<HW>]:BB:GNSS:TRIGger:SOURce driver.source.bb.gnss.trigger.set_source(source = enums.TrigSour.BBSY)
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
- Parameters:
source – INTernal | EGT1 | EXTernal | BBSY
Cloning the Group
# Create a copy of the original group, that exists independently
trigger_copy = driver.source.bb.gnss.trigger.clone()
Subgroups