Trigger
SCPI Commands :
[SOURce<HW>]:BB:LORA:TRIGger:RMODe
[SOURce<HW>]:BB:LORA:TRIGger:SLENgth
[SOURce<HW>]:BB:LORA:TRIGger:SLUNit
[SOURce<HW>]:BB:LORA:TRIGger:SOURce
[SOURce<HW>]:BB:LORA:[TRIGger]:SEQuence
- class TriggerCls[source]
Trigger commands group definition. 20 total commands, 5 Subgroups, 5 group commands
- get_rmode() RsSmbv.enums.TrigRunMode [source]
# SCPI: [SOURce<HW>]:BB:LORA:TRIGger:RMODe value: enums.TrigRunMode = driver.source.bb.lora.trigger.get_rmode()
Queries the signal generation status.
- return
rmode: STOP| RUN
- get_sequence() RsSmbv.enums.DmTrigMode [source]
# SCPI: [SOURce<HW>]:BB:LORA:[TRIGger]:SEQuence value: enums.DmTrigMode = driver.source.bb.lora.trigger.get_sequence()
Sets the trigger mode.
- return
sequence: AUTO| RETRigger| AAUTo| ARETrigger| SINGle
- get_sl_unit() RsSmbv.enums.UnitSlB [source]
# SCPI: [SOURce<HW>]:BB:LORA:TRIGger:SLUNit value: enums.UnitSlB = driver.source.bb.lora.trigger.get_sl_unit()
Defines the unit for the entry of the signal sequence length.
- return
sl_unit: SEQuence| SAMPle
- get_slength() int [source]
# SCPI: [SOURce<HW>]:BB:LORA:TRIGger:SLENgth value: int = driver.source.bb.lora.trigger.get_slength()
Defines the length of the signal sequence that is output in the SINGle trigger mode
- return
slength: integer Range: 1 to dynamic
- get_source() RsSmbv.enums.TrigSour [source]
# SCPI: [SOURce<HW>]:BB:LORA:TRIGger:SOURce value: enums.TrigSour = driver.source.bb.lora.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_rmode(rmode: RsSmbv.enums.TrigRunMode) None [source]
# SCPI: [SOURce<HW>]:BB:LORA:TRIGger:RMODe driver.source.bb.lora.trigger.set_rmode(rmode = enums.TrigRunMode.RUN)
Queries the signal generation status.
- param rmode
STOP| RUN
- set_sequence(sequence: RsSmbv.enums.DmTrigMode) None [source]
# SCPI: [SOURce<HW>]:BB:LORA:[TRIGger]:SEQuence driver.source.bb.lora.trigger.set_sequence(sequence = enums.DmTrigMode.AAUTo)
Sets the trigger mode.
- param sequence
AUTO| RETRigger| AAUTo| ARETrigger| SINGle
- set_sl_unit(sl_unit: RsSmbv.enums.UnitSlB) None [source]
# SCPI: [SOURce<HW>]:BB:LORA:TRIGger:SLUNit driver.source.bb.lora.trigger.set_sl_unit(sl_unit = enums.UnitSlB.SAMPle)
Defines the unit for the entry of the signal sequence length.
- param sl_unit
SEQuence| SAMPle
- set_slength(slength: int) None [source]
# SCPI: [SOURce<HW>]:BB:LORA:TRIGger:SLENgth driver.source.bb.lora.trigger.set_slength(slength = 1)
Defines the length of the signal sequence that is output in the SINGle trigger mode
- param slength
integer Range: 1 to dynamic
- set_source(source: RsSmbv.enums.TrigSour) None [source]
# SCPI: [SOURce<HW>]:BB:LORA:TRIGger:SOURce driver.source.bb.lora.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.lora.trigger.clone()
Subgroups