Sync

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SYNC:ZONE
CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SYNC:OFFSet
class SyncCls[source]

Sync commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_offset() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SYNC:OFFSet
value: float = driver.configure.cell.pcc.sync.get_offset()

Configures the timing offset relative to the time zone.

return:

offset: numeric Range: 0 s to 1E-3 s, Unit: s

get_zone() SyncZone[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SYNC:ZONE
value: enums.SyncZone = driver.configure.cell.pcc.sync.get_zone()

Selects the synchronization zone for the signaling application.

return:

zone: NONE | Z1 NONE: no synchronization Z1: synchronization to zone 1

set_offset(offset: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SYNC:OFFSet
driver.configure.cell.pcc.sync.set_offset(offset = 1.0)

Configures the timing offset relative to the time zone.

param offset:

numeric Range: 0 s to 1E-3 s, Unit: s

set_zone(zone: SyncZone) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SYNC:ZONE
driver.configure.cell.pcc.sync.set_zone(zone = enums.SyncZone.NONE)

Selects the synchronization zone for the signaling application.

param zone:

NONE | Z1 NONE: no synchronization Z1: synchronization to zone 1