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
- Commands in total: 4Subgroups: 0Direct child commands: 4
- get_custom() int[source]
# [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.
- Returns:
custom: integer Range: 25000 to 40E6
- get_mode() ClockMode[source]
# [SOURce<HW>]:BB:EUTRa:CLOCk:MODE value: enums.ClockMode = driver.source.bb.eutra.clock.get_mode()
Sets the type of externally supplied clock.
- Returns:
mode: SAMPle
- get_multiplier() int[source]
# [SOURce<HW>]:BB:EUTRa:CLOCk:MULTiplier value: int = driver.source.bb.eutra.clock.get_multiplier()
No help available
- get_source() ClockSourceC[source]
# [SOURce<HW>]:BB:EUTRa:CLOCk:SOURce value: enums.ClockSourceC = driver.source.bb.eutra.clock.get_source()
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
- Returns:
source: INTernal | ELCLock | EXTernal
- set_custom(custom: int) None[source]
# [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.
- Parameters:
custom – integer Range: 25000 to 40E6
- set_mode(mode: ClockMode) None[source]
# [SOURce<HW>]:BB:EUTRa:CLOCk:MODE driver.source.bb.eutra.clock.set_mode(mode = enums.ClockMode.SAMPle)
Sets the type of externally supplied clock.
- Parameters:
mode – SAMPle
- set_multiplier(multiplier: int) None[source]
# [SOURce<HW>]:BB:EUTRa:CLOCk:MULTiplier driver.source.bb.eutra.clock.set_multiplier(multiplier = 1)
No help available
- set_source(source: ClockSourceC) None[source]
# [SOURce<HW>]:BB:EUTRa:CLOCk:SOURce driver.source.bb.eutra.clock.set_source(source = enums.ClockSourceC.ELCLock)
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
- Parameters:
source – INTernal | ELCLock | EXTernal