Trigger

SCPI Commands :

BLER:TRIGger:MODE
BLER:TRIGger:SOURce
class TriggerCls[source]

Trigger commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_mode() RsSmbv.enums.BlerTrigMode[source]
# SCPI: BLER:TRIGger:MODE
value: enums.BlerTrigMode = driver.bler.trigger.get_mode()

Selects the type of measurement.

return

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.set | method RsSmbv.Bler.Trigger.Immediate.set.

get_source() RsSmbv.enums.TrigSourBerBler[source]
# SCPI: BLER:TRIGger:SOURce
value: enums.TrigSourBerBler = driver.bler.trigger.get_source()

For method RsSmbv.Bler.Trigger.modeSINGle, selects the source of the trigger signal.

return

polarity: INTernal| EGT1

set_mode(polarity: RsSmbv.enums.BlerTrigMode) None[source]
# SCPI: BLER:TRIGger:MODE
driver.bler.trigger.set_mode(polarity = enums.BlerTrigMode.AUTO)

Selects the type of measurement.

param 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.set | method RsSmbv.Bler.Trigger.Immediate.set.

set_source(polarity: RsSmbv.enums.TrigSourBerBler) None[source]
# SCPI: BLER:TRIGger:SOURce
driver.bler.trigger.set_source(polarity = enums.TrigSourBerBler.EGT1)

For method RsSmbv.Bler.Trigger.modeSINGle, selects the source of the trigger signal.

param polarity

INTernal| EGT1

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.bler.trigger.clone()

Subgroups