Trigger
SCPI Commands :
[SOURce<HW>]:BB:EVDO:TRIGger:RMODe
[SOURce<HW>]:BB:EVDO:TRIGger:SLENgth
[SOURce<HW>]:BB:EVDO:TRIGger:SLUNit
[SOURce<HW>]:BB:EVDO:TRIGger:SOURce
[SOURce<HW>]:BB:EVDO:[TRIGger]:SEQuence
- Commands in total: 20Subgroups: 6Direct child commands: 5
- get_rmode() TrigRunMode[source]
# [SOURce<HW>]:BB:EVDO:TRIGger:RMODe value: enums.TrigRunMode = driver.source.bb.evdo.trigger.get_rmode()
Queries the signal generation status.
- Returns:
rmode: STOP | RUN
- get_sequence() DmTrigMode[source]
# [SOURce<HW>]:BB:EVDO:[TRIGger]:SEQuence value: enums.DmTrigMode = driver.source.bb.evdo.trigger.get_sequence()
Selects the trigger mode:
AUTO = auto
RETRigger = retrigger
AAUTo = armed auto
ARETrigger = armed retrigger
SINGle = single
- Returns:
sequence: AUTO | RETRigger | AAUTo | ARETrigger | SINGle
- get_sl_unit() UnitSlEvdo[source]
# [SOURce<HW>]:BB:EVDO:TRIGger:SLUNit value: enums.UnitSlEvdo = driver.source.bb.evdo.trigger.get_sl_unit()
Defines the unit for the entry of the length of the signal sequence.
- Returns:
sl_unit: SLOT | CHIP | SEQuence
- get_slength() int[source]
# [SOURce<HW>]:BB:EVDO:TRIGger:SLENgth value: int = driver.source.bb.evdo.trigger.get_slength()
Defines the length of the signal sequence that is output in the SINGle trigger mode.
- Returns:
slength: integer Range: 1 to 4294967295
- get_source() TrigSour[source]
# [SOURce<HW>]:BB:EVDO:TRIGger:SOURce value: enums.TrigSour = driver.source.bb.evdo.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 local or global connectors
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)
- Returns:
source: INTB | INTernal | OBASeband | EGT1 | EGT2 | EGC1 | EGC2 | ELTRigger | INTA | ELCLock | BEXTernal | EXTernal | BBSY
- set_sequence(sequence: DmTrigMode) None[source]
# [SOURce<HW>]:BB:EVDO:[TRIGger]:SEQuence driver.source.bb.evdo.trigger.set_sequence(sequence = enums.DmTrigMode.AAUTo)
Selects the trigger mode:
AUTO = auto
RETRigger = retrigger
AAUTo = armed auto
ARETrigger = armed retrigger
SINGle = single
- Parameters:
sequence – AUTO | RETRigger | AAUTo | ARETrigger | SINGle
- set_sl_unit(sl_unit: UnitSlEvdo) None[source]
# [SOURce<HW>]:BB:EVDO:TRIGger:SLUNit driver.source.bb.evdo.trigger.set_sl_unit(sl_unit = enums.UnitSlEvdo.CHIP)
Defines the unit for the entry of the length of the signal sequence.
- Parameters:
sl_unit – SLOT | CHIP | SEQuence
- set_slength(slength: int) None[source]
# [SOURce<HW>]:BB:EVDO:TRIGger:SLENgth driver.source.bb.evdo.trigger.set_slength(slength = 1)
Defines the length of the signal sequence that is output in the SINGle trigger mode.
- Parameters:
slength – integer Range: 1 to 4294967295
- set_source(source: TrigSour) None[source]
# [SOURce<HW>]:BB:EVDO:TRIGger:SOURce driver.source.bb.evdo.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 local or global connectors
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)
- Parameters:
source – INTB | INTernal | OBASeband | EGT1 | EGT2 | EGC1 | EGC2 | ELTRigger | INTA | ELCLock | BEXTernal | EXTernal | BBSY
Cloning the Group
# Create a copy of the original group, that exists independently
trigger_copy = driver.source.bb.evdo.trigger.clone()
Subgroups