Roscillator

SCPI Commands :

[SOURce]:ROSCillator:PRESet
[SOURce]:ROSCillator:SOURce
Commands in total: 12
Subgroups: 3
Direct child commands: 2
get_source() SourceInt[source]
# [SOURce]:ROSCillator:SOURce
value: enums.SourceInt = driver.source.roscillator.get_source()

Selects between internal or external reference frequency.

Returns:

source: INTernal | EXTernal

preset() None[source]
# [SOURce]:ROSCillator:PRESet
driver.source.roscillator.preset()

Resets the reference oscillator settings.

preset_with_opc(opc_timeout_ms: int = -1) None[source]
# [SOURce]:ROSCillator:PRESet
driver.source.roscillator.preset_with_opc()

Resets the reference oscillator settings.

Same as preset, but waits for the operation to complete before continuing further. Use the RsSmbv.utilities.opc_timeout_set() to set the timeout value.

Parameters:

opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.

set_source(source: SourceInt) None[source]
# [SOURce]:ROSCillator:SOURce
driver.source.roscillator.set_source(source = enums.SourceInt.EXTernal)

Selects between internal or external reference frequency.

Parameters:

source – INTernal | EXTernal

Cloning the Group

# Create a copy of the original group, that exists independently
roscillator_copy = driver.source.roscillator.clone()

Subgroups