Tuning

SCPI Commands :

[SOURce]:ROSCillator:INTernal:TUNing:SLOPe
[SOURce]:ROSCillator:INTernal:TUNing:[STATe]
class TuningCls[source]

Tuning commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_slope() LowHigh[source]
# SCPI: [SOURce]:ROSCillator:INTernal:TUNing:SLOPe
value: enums.LowHigh = driver.source.roscillator.internal.tuning.get_slope()

Sets the sensitivity of the external tuning volatge.

return:

state: LOW| HIGH

get_state() bool[source]
# SCPI: [SOURce]:ROSCillator:INTernal:TUNing:[STATe]
value: bool = driver.source.roscillator.internal.tuning.get_state()

Activates the EFC (external frequency control) .

return:

state: 1| ON| 0| OFF

set_slope(state: LowHigh) None[source]
# SCPI: [SOURce]:ROSCillator:INTernal:TUNing:SLOPe
driver.source.roscillator.internal.tuning.set_slope(state = enums.LowHigh.HIGH)

Sets the sensitivity of the external tuning volatge.

param state:

LOW| HIGH

set_state(state: bool) None[source]
# SCPI: [SOURce]:ROSCillator:INTernal:TUNing:[STATe]
driver.source.roscillator.internal.tuning.set_state(state = False)

Activates the EFC (external frequency control) .

param state:

1| ON| 0| OFF