Trigger

SCPI Commands :

[SOURce<HW>]:INPut:TM:TRIGger:IMPedance
[SOURce<HW>]:INPut:TM:TRIGger:LEVel
[SOURce<HW>]:INPut:TM:TRIGger:SLOPe
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_impedance() ImpG50G1K[source]
# [SOURce<HW>]:INPut:TM:TRIGger:IMPedance
value: enums.ImpG50G1K = driver.source.inputPy.tm.trigger.get_impedance()

Selects the input impedance for the external trigger/clock inputs.

Returns:

impedance: G50 | G1K G50 50 Ohm per ground G1K 1 kOhm per ground G10K For backward compatibility with other Rohde & Schwarz signal generators. The R&S SMW200A maps this value to G1K.

get_level() float[source]
# [SOURce<HW>]:INPut:TM:TRIGger:LEVel
value: float = driver.source.inputPy.tm.trigger.get_level()

Sets the high/low threshold in volts for the trigger and clock signal inputs of the baseband section.

Returns:

level: float Range: 0.3 to 2

get_slope() SlopeType[source]
# [SOURce<HW>]:INPut:TM:TRIGger:SLOPe
value: enums.SlopeType = driver.source.inputPy.tm.trigger.get_slope()

Sets the polarity of the active slope of an externally applied trigger signal.

Returns:

slope: NEGative | POSitive

set_impedance(impedance: ImpG50G1K) None[source]
# [SOURce<HW>]:INPut:TM:TRIGger:IMPedance
driver.source.inputPy.tm.trigger.set_impedance(impedance = enums.ImpG50G1K.G1K)

Selects the input impedance for the external trigger/clock inputs.

Parameters:

impedance – G50 | G1K G50 50 Ohm per ground G1K 1 kOhm per ground G10K For backward compatibility with other Rohde & Schwarz signal generators. The R&S SMW200A maps this value to G1K.

set_level(level: float) None[source]
# [SOURce<HW>]:INPut:TM:TRIGger:LEVel
driver.source.inputPy.tm.trigger.set_level(level = 1.0)

Sets the high/low threshold in volts for the trigger and clock signal inputs of the baseband section.

Parameters:

level – float Range: 0.3 to 2

set_slope(slope: SlopeType) None[source]
# [SOURce<HW>]:INPut:TM:TRIGger:SLOPe
driver.source.inputPy.tm.trigger.set_slope(slope = enums.SlopeType.NEGative)

Sets the polarity of the active slope of an externally applied trigger signal.

Parameters:

slope – NEGative | POSitive