Trigger
SCPI Commands :
BLER:TRIGger:MODE
BLER:TRIGger:SOURce
- Commands in total: 3Subgroups: 1Direct child commands: 2
- get_mode() BlerTrigMode[source]
# BLER:TRIGger:MODE value: enums.BlerTrigMode = driver.bler.trigger.get_mode()
Selects the type of measurement.
- Returns:
polarity: AUTO | SINGle AUTO Continuous measurement. Terminates the measurement in progress if one or both termination criteria are met. Delays the restart of a new measurement until the first measurement result has been queried. The resulting brief measurement interruption is irrelevant because the subsequent measurement is synchronized within 24 data bits. SINGle Single measurement, started with method
RsSmbv.bert.trigger.immediate.perform()| methodRsSmbv.bler.trigger.immediate.perform().
- get_source() TrigSourBerBler[source]
# BLER:TRIGger:SOURce value: enums.TrigSourBerBler = driver.bler.trigger.get_source()
For method
RsSmbv.bler.trigger.mode()SINGle, selects the source of the trigger signal.- Returns:
polarity: INTernal | EGT1
- set_mode(polarity: BlerTrigMode) None[source]
# BLER:TRIGger:MODE driver.bler.trigger.set_mode(polarity = enums.BlerTrigMode.AUTO)
Selects the type of measurement.
- Parameters:
polarity – AUTO | SINGle AUTO Continuous measurement. Terminates the measurement in progress if one or both termination criteria are met. Delays the restart of a new measurement until the first measurement result has been queried. The resulting brief measurement interruption is irrelevant because the subsequent measurement is synchronized within 24 data bits. SINGle Single measurement, started with method
RsSmbv.bert.trigger.immediate.perform()| methodRsSmbv.bler.trigger.immediate.perform().
- set_source(polarity: TrigSourBerBler) None[source]
# BLER:TRIGger:SOURce driver.bler.trigger.set_source(polarity = enums.TrigSourBerBler.EGT1)
For method
RsSmbv.bler.trigger.mode()SINGle, selects the source of the trigger signal.- Parameters:
polarity – INTernal | EGT1
Cloning the Group
# Create a copy of the original group, that exists independently
trigger_copy = driver.bler.trigger.clone()
Subgroups