Trigger
SCPI Commands :
[SOURce<HW>]:BB:HUWB:TRIGger:RMODe
[SOURce<HW>]:BB:HUWB:TRIGger:SLENgth
[SOURce<HW>]:BB:HUWB:TRIGger:SLUNit
[SOURce<HW>]:BB:HUWB:TRIGger:SOURce
[SOURce<HW>]:BB:HUWB:[TRIGger]:SEQuence
- class TriggerCls[source]
Trigger commands group definition. 30 total commands, 7 Subgroups, 5 group commands
- get_rmode() TrigRunMode [source]
# SCPI: [SOURce<HW>]:BB:HUWB:TRIGger:RMODe value: enums.TrigRunMode = driver.source.bb.huwb.trigger.get_rmode()
Queries the signal generation status.
- return:
rmode: STOP| RUN
- get_sequence() DmTrigMode [source]
# SCPI: [SOURce<HW>]:BB:HUWB:[TRIGger]:SEQuence value: enums.DmTrigMode = driver.source.bb.huwb.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
- get_sl_unit() UnitSlB [source]
# SCPI: [SOURce<HW>]:BB:HUWB:TRIGger:SLUNit value: enums.UnitSlB = driver.source.bb.huwb.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:HUWB:TRIGger:SLENgth value: int = driver.source.bb.huwb.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() TrigSourHrpUwb [source]
# SCPI: [SOURce<HW>]:BB:HUWB:TRIGger:SOURce value: enums.TrigSourHrpUwb = driver.source.bb.huwb.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:
source: INTB| INTernal| OBASeband| EGT1| EGT2| EGC1| EGC2| ELTRigger| INTA| ELCLock| BEXTernal| EXTernal | BBSY
- set_sequence(sequence: DmTrigMode) None [source]
# SCPI: [SOURce<HW>]:BB:HUWB:[TRIGger]:SEQuence driver.source.bb.huwb.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
- set_sl_unit(sl_unit: UnitSlB) None [source]
# SCPI: [SOURce<HW>]:BB:HUWB:TRIGger:SLUNit driver.source.bb.huwb.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:HUWB:TRIGger:SLENgth driver.source.bb.huwb.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: TrigSourHrpUwb) None [source]
# SCPI: [SOURce<HW>]:BB:HUWB:TRIGger:SOURce driver.source.bb.huwb.trigger.set_source(source = enums.TrigSourHrpUwb.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 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.huwb.trigger.clone()
Subgroups