Clock

SCPI Commands :

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

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

get_custom() int[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:CLOCk:CUSTom
value: int = driver.source.bb.eutra.clock.get_custom()

Specifies the sample clock for clock type Custom (BB:EUTRa:CLOCk:MODE CUSTom) in the case of an external clock source. Note: Custom External Clock source in baseband B is only supported if baseband A is configured with EUTRA/LTE too. Furthermore the same settings for clock source and clock mode have to be set in baseband A and B. The user needs to take care of the correct settings.

return

custom: integer Range: 25000 to 40E6

get_mode() RsSmw.enums.ClockMode[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:CLOCk:MODE
value: enums.ClockMode = driver.source.bb.eutra.clock.get_mode()

Sets the type of externally supplied clock.

return

mode: SAMPle

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

No command help available

return

multiplier: No help available

get_source() RsSmw.enums.ClockSourceC[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:CLOCk:SOURce
value: enums.ClockSourceC = driver.source.bb.eutra.clock.get_source()


    INTRO_CMD_HELP: Selects the clock source:

    - INTernal: Internal clock reference
    - ELCLock: External local clock
    - EXTernal = ELCLock: Setting only Provided for backward compatibility with other Rohde & Schwarz signal generators

    :return: source: INTernal| ELCLock| EXTernal
set_custom(custom: int) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:CLOCk:CUSTom
driver.source.bb.eutra.clock.set_custom(custom = 1)

Specifies the sample clock for clock type Custom (BB:EUTRa:CLOCk:MODE CUSTom) in the case of an external clock source. Note: Custom External Clock source in baseband B is only supported if baseband A is configured with EUTRA/LTE too. Furthermore the same settings for clock source and clock mode have to be set in baseband A and B. The user needs to take care of the correct settings.

param custom

integer Range: 25000 to 40E6

set_mode(mode: RsSmw.enums.ClockMode) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:CLOCk:MODE
driver.source.bb.eutra.clock.set_mode(mode = enums.ClockMode.SAMPle)

Sets the type of externally supplied clock.

param mode

SAMPle

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

No command help available

param multiplier

No help available

set_source(source: RsSmw.enums.ClockSourceC) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:CLOCk:SOURce
driver.source.bb.eutra.clock.set_source(source = enums.ClockSourceC.ELCLock)


    INTRO_CMD_HELP: Selects the clock source:

    - INTernal: Internal clock reference
    - ELCLock: External local clock
    - EXTernal = ELCLock: Setting only Provided for backward compatibility with other Rohde & Schwarz signal generators

    :param source: INTernal| ELCLock| EXTernal