Sync

SCPI Commands :

[SOURce<HW>]:BB:EUTRa:DL:SYNC:PPOWer
[SOURce<HW>]:BB:EUTRa:DL:SYNC:PSEQuence
[SOURce<HW>]:BB:EUTRa:DL:SYNC:PSTate
[SOURce<HW>]:BB:EUTRa:DL:SYNC:SPOWer
[SOURce<HW>]:BB:EUTRa:DL:SYNC:SSEQuence
[SOURce<HW>]:BB:EUTRa:DL:SYNC:SSTate
[SOURce<HW>]:BB:EUTRa:DL:SYNC:TXANtenna
Commands in total: 10
Subgroups: 1
Direct child commands: 7
get_ppower() float[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:PPOWer
value: float = driver.source.bb.eutra.downlink.sync.get_ppower()

Sets the power of the primary synchronization signal (P-SYNC) .

Returns:

ppower: float Range: -80 to 10

get_psequence() str[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:PSEQuence
value: str = driver.source.bb.eutra.downlink.sync.get_psequence()

No help available

get_pstate() bool[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:PSTate
value: bool = driver.source.bb.eutra.downlink.sync.get_pstate()

No help available

get_spower() float[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:SPOWer
value: float = driver.source.bb.eutra.downlink.sync.get_spower()

Sets the power of the secondary synchronization signal (S-SYNC) .

Returns:

spower: float Range: -80 to 10

get_ssequence() str[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:SSEQuence
value: str = driver.source.bb.eutra.downlink.sync.get_ssequence()

No help available

get_sstate() bool[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:SSTate
value: bool = driver.source.bb.eutra.downlink.sync.get_sstate()

No help available

get_tx_antenna() TxAntennaGnss[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:TXANtenna
value: enums.TxAntennaGnss = driver.source.bb.eutra.downlink.sync.get_tx_antenna()

Defines on which antenna port the P-/S-SYNC is transmitted. The available values depend on the number of configured antennas.

Returns:

tx_antenna: NONE | ANT1 | ANT2 | ANT3 | ANT4 | ALL

set_ppower(ppower: float) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:PPOWer
driver.source.bb.eutra.downlink.sync.set_ppower(ppower = 1.0)

Sets the power of the primary synchronization signal (P-SYNC) .

Parameters:

ppower – float Range: -80 to 10

set_psequence(psequence: str) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:PSEQuence
driver.source.bb.eutra.downlink.sync.set_psequence(psequence = 'abc')

No help available

set_pstate(psync_state: bool) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:PSTate
driver.source.bb.eutra.downlink.sync.set_pstate(psync_state = False)

No help available

set_spower(spower: float) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:SPOWer
driver.source.bb.eutra.downlink.sync.set_spower(spower = 1.0)

Sets the power of the secondary synchronization signal (S-SYNC) .

Parameters:

spower – float Range: -80 to 10

set_ssequence(ssequence: str) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:SSEQuence
driver.source.bb.eutra.downlink.sync.set_ssequence(ssequence = 'abc')

No help available

set_sstate(ssync_state: bool) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:SSTate
driver.source.bb.eutra.downlink.sync.set_sstate(ssync_state = False)

No help available

set_tx_antenna(tx_antenna: TxAntennaGnss) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:SYNC:TXANtenna
driver.source.bb.eutra.downlink.sync.set_tx_antenna(tx_antenna = enums.TxAntennaGnss.ALL)

Defines on which antenna port the P-/S-SYNC is transmitted. The available values depend on the number of configured antennas.

Parameters:

tx_antenna – NONE | ANT1 | ANT2 | ANT3 | ANT4 | ALL

Cloning the Group

# Create a copy of the original group, that exists independently
sync_copy = driver.source.bb.eutra.downlink.sync.clone()

Subgroups