Time

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:CELL:TIME:TSOurce
CONFigure:LTE:SIGNaling<instance>:CELL:TIME:DSTime
CONFigure:LTE:SIGNaling<instance>:CELL:TIME:LTZoffset
CONFigure:LTE:SIGNaling<instance>:CELL:TIME:SATTach
CONFigure:LTE:SIGNaling<instance>:CELL:TIME:SNName
class TimeCls[source]

Time commands group definition. 8 total commands, 3 Subgroups, 5 group commands

get_daylight_saving_time() DsTime[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:DSTime
value: enums.DsTime = driver.configure.cell.time.get_daylight_saving_time()

Specifies a daylight saving time (DST) offset for the time source DATE (see method RsCmwLteSig.Configure.Cell.Time. tsource) .

return:

enable: P1H | P2H P1H: +1h offset if DST is ON P2H: +2h offset if DST is ON Additional parameters: OFF | ON (disables | enables DST)

get_ltz_offset() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:LTZoffset
value: float = driver.configure.cell.time.get_ltz_offset()

Specifies the time zone offset for the time source DATE (see method RsCmwLteSig.Configure.Cell.Time.tsource) .

return:

time_zone_offset: numeric Range: -19.75 h to 19.75 h, Unit: h

get_sattach() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:SATTach
value: bool = driver.configure.cell.time.get_sattach()

Specifies whether the date and time information is sent to the UE during the attach procedure or not.

return:

enable: OFF | ON ON: send date and time at attach OFF: do not send date and time at attach

get_snname() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:SNName
value: bool = driver.configure.cell.time.get_snname()

Selects whether the network name is sent together with the date and time information.

return:

enable: OFF | ON OFF: Do not send name ON: Send full and short network name

get_tsource() SourceTime[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:TSOurce
value: enums.SourceTime = driver.configure.cell.time.get_tsource()
Selects the date and time source.

INTRO_CMD_HELP: The time source DATE is configured via the following commands:

  • method RsCmwLteSig.Configure.Cell.Time.Date.set

  • method RsCmwLteSig.Configure.Cell.Time.Time.set

  • method RsCmwLteSig.Configure.Cell.Time.daylightSavingTime

  • method RsCmwLteSig.Configure.Cell.Time.ltzOffset

return:

source_time: CMWTime | DATE CMWTime: Windows date and time DATE: Date and time specified via remote commands

set_daylight_saving_time(enable: DsTime) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:DSTime
driver.configure.cell.time.set_daylight_saving_time(enable = enums.DsTime.OFF)

Specifies a daylight saving time (DST) offset for the time source DATE (see method RsCmwLteSig.Configure.Cell.Time. tsource) .

param enable:

P1H | P2H P1H: +1h offset if DST is ON P2H: +2h offset if DST is ON Additional parameters: OFF | ON (disables | enables DST)

set_ltz_offset(time_zone_offset: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:LTZoffset
driver.configure.cell.time.set_ltz_offset(time_zone_offset = 1.0)

Specifies the time zone offset for the time source DATE (see method RsCmwLteSig.Configure.Cell.Time.tsource) .

param time_zone_offset:

numeric Range: -19.75 h to 19.75 h, Unit: h

set_sattach(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:SATTach
driver.configure.cell.time.set_sattach(enable = False)

Specifies whether the date and time information is sent to the UE during the attach procedure or not.

param enable:

OFF | ON ON: send date and time at attach OFF: do not send date and time at attach

set_snname(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:SNName
driver.configure.cell.time.set_snname(enable = False)

Selects whether the network name is sent together with the date and time information.

param enable:

OFF | ON OFF: Do not send name ON: Send full and short network name

set_tsource(source_time: SourceTime) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:TSOurce
driver.configure.cell.time.set_tsource(source_time = enums.SourceTime.CMWTime)
Selects the date and time source.

INTRO_CMD_HELP: The time source DATE is configured via the following commands:

  • method RsCmwLteSig.Configure.Cell.Time.Date.set

  • method RsCmwLteSig.Configure.Cell.Time.Time.set

  • method RsCmwLteSig.Configure.Cell.Time.daylightSavingTime

  • method RsCmwLteSig.Configure.Cell.Time.ltzOffset

param source_time:

CMWTime | DATE CMWTime: Windows date and time DATE: Date and time specified via remote commands

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.cell.time.clone()

Subgroups