Clock

SCPI Commands :

[SOURce<HW>]:BB:ARBitrary:CLOCk:MODE
[SOURce<HW>]:BB:ARBitrary:CLOCk:MULTiplier
[SOURce<HW>]:BB:ARBitrary:CLOCk:SOURce
[SOURce<HW>]:BB:ARBitrary:CLOCk
class ClockCls[source]

Clock commands group definition. 6 total commands, 1 Subgroups, 4 group commands

get_mode() RsSmbv.enums.ClocModeB[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:CLOCk:MODE
value: enums.ClocModeB = driver.source.bb.arbitrary.clock.get_mode()

No command help available

return

mode: No help available

get_multiplier() int[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:CLOCk:MULTiplier
value: int = driver.source.bb.arbitrary.clock.get_multiplier()

No command help available

return

multiplier: No help available

get_source() RsSmbv.enums.ClockSourceA[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:CLOCk:SOURce
value: enums.ClockSourceA = driver.source.bb.arbitrary.clock.get_source()


    INTRO_CMD_HELP: Selects the clock source:

    - INTernal: Internal clock reference

    :return: source: INTernal
get_value() float[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:CLOCk
value: float = driver.source.bb.arbitrary.clock.get_value()

Sets the clock frequency. If you load a waveform, the clock rate is determined as defined with the waveform tag {CLOCK: frequency}. This command subsequently changes the clock rate; see data sheet for value range.

return

clock: float Range: depends on the installed options , Unit: Hz E.g. 400 Hz to 600 MHz

set_mode(mode: RsSmbv.enums.ClocModeB) None[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:CLOCk:MODE
driver.source.bb.arbitrary.clock.set_mode(mode = enums.ClocModeB.MSAMple)

No command help available

param mode

No help available

set_multiplier(multiplier: int) None[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:CLOCk:MULTiplier
driver.source.bb.arbitrary.clock.set_multiplier(multiplier = 1)

No command help available

param multiplier

No help available

set_source(source: RsSmbv.enums.ClockSourceA) None[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:CLOCk:SOURce
driver.source.bb.arbitrary.clock.set_source(source = enums.ClockSourceA.INTernal)


    INTRO_CMD_HELP: Selects the clock source:

    - INTernal: Internal clock reference

    :param source: INTernal
set_value(clock: float) None[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:CLOCk
driver.source.bb.arbitrary.clock.set_value(clock = 1.0)

Sets the clock frequency. If you load a waveform, the clock rate is determined as defined with the waveform tag {CLOCK: frequency}. This command subsequently changes the clock rate; see data sheet for value range.

param clock

float Range: depends on the installed options , Unit: Hz E.g. 400 Hz to 600 MHz

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.arbitrary.clock.clone()

Subgroups