Clock

SCPI Commands :

[SOURce]:INPut:USER:CLOCk:IMPedance
[SOURce]:INPut:USER:CLOCk:LEVel
[SOURce]:INPut:USER:CLOCk:SLOPe
class ClockCls[source]

Clock commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_impedance() RsSmw.enums.ImpG50G1K[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:IMPedance
value: enums.ImpG50G1K = driver.source.inputPy.user.clock.get_impedance()

Selects the input impedance for the external trigger inputs.

return

impedance: G50| G1K G50 50 Ohm per ground G1K 1 kOhm per ground

get_level() float[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:LEVel
value: float = driver.source.inputPy.user.clock.get_level()

Sets the threshold for any input signal at the USER1-3 connectors.

return

level: float Range: 0.1 to 2

get_slope() RsSmw.enums.SlopeType[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:SLOPe
value: enums.SlopeType = driver.source.inputPy.user.clock.get_slope()

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

return

slope: NEGative| POSitive

set_impedance(impedance: RsSmw.enums.ImpG50G1K) None[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:IMPedance
driver.source.inputPy.user.clock.set_impedance(impedance = enums.ImpG50G1K.G1K)

Selects the input impedance for the external trigger inputs.

param impedance

G50| G1K G50 50 Ohm per ground G1K 1 kOhm per ground

set_level(level: float) None[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:LEVel
driver.source.inputPy.user.clock.set_level(level = 1.0)

Sets the threshold for any input signal at the USER1-3 connectors.

param level

float Range: 0.1 to 2

set_slope(slope: RsSmw.enums.SlopeType) None[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:SLOPe
driver.source.inputPy.user.clock.set_slope(slope = enums.SlopeType.NEGative)

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

param slope

NEGative| POSitive