Trigger
SCPI Commands :
[SOURce<HW>]:INPut:TM:TRIGger:IMPedance
[SOURce<HW>]:INPut:TM:TRIGger:LEVel
[SOURce<HW>]:INPut:TM:TRIGger:SLOPe
- class TriggerCls[source]
Trigger commands group definition. 3 total commands, 0 Subgroups, 3 group commands
- get_impedance() ImpG50G1K [source]
# SCPI: [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.
- return:
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]
# SCPI: [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.
- return:
level: float Range: 0.3 to 2
- get_slope() SlopeType [source]
# SCPI: [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.
- return:
slope: NEGative| POSitive
- set_impedance(impedance: ImpG50G1K) None [source]
# SCPI: [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.
- param 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]
# SCPI: [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.
- param level:
float Range: 0.3 to 2
- set_slope(slope: SlopeType) None [source]
# SCPI: [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.
- param slope:
NEGative| POSitive