Time

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:TIME:TSOurce
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TIME:DATE
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TIME:TIME
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TIME:DSTime
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TIME:LTZoffset
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TIME:SREGister
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TIME:SNName
class Time[source]

Time commands group definition. 8 total commands, 1 Sub-groups, 7 group commands

class DateStruct[source]

Structure for reading output parameters. Fields:

  • Day: int: Range: 1 to 31

  • Month: int: Range: 1 to 12

  • Year: int: Range: 2011 to 9999

class TimeStruct[source]

Structure for reading output parameters. Fields:

  • Hour: int: Range: 0 to 23

  • Minute: int: Range: 0 to 59

  • Second: int: Range: 0 to 59

get_date()DateStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TIME:DATE
value: DateStruct = driver.configure.cell.time.get_date()

Specifies the UTC date for the time source DATE (see method RsCmwWcdmaSig.Configure.Cell.Time.tsource) .

return

structure: for return value, see the help for DateStruct structure arguments.

get_daylight_saving_time()RsCmwWcdmaSig.enums.DsTime[source]
# SCPI: CONFigure:WCDMa: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 RsCmwWcdmaSig.Configure.Cell.Time. tsource) .

return

enable: P1H | P2H | ON | OFF P1H: +1h offset P2H: +2h offset Additional OFF | ON disables | enables DST

get_ltz_offset()float[source]
# SCPI: CONFigure:WCDMa: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 RsCmwWcdmaSig.Configure.Cell.Time.tsource) .

return

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

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

If enabled, sends the full and short network name within date and time signaling to the UE.

return

enable: OFF | ON

get_sregister()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TIME:SREGister
value: bool = driver.configure.cell.time.get_sregister()

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

return

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

get_time()TimeStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TIME:TIME
value: TimeStruct = driver.configure.cell.time.get_time()

Specifies the UTC time for the time source DATE (see method RsCmwWcdmaSig.Configure.Cell.Time.tsource) .

return

structure: for return value, see the help for TimeStruct structure arguments.

get_tsource()RsCmwWcdmaSig.enums.SourceTime[source]
# SCPI: CONFigure:WCDMa: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 RsCmwWcdmaSig.Configure.Cell.Time.date

  • method RsCmwWcdmaSig.Configure.Cell.Time.time

  • method RsCmwWcdmaSig.Configure.Cell.Time.daylightSavingTime

return

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

set_date(value: RsCmwWcdmaSig.Implementations.Configure_.Cell_.Time.Time.DateStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TIME:DATE
driver.configure.cell.time.set_date(value = DateStruct())

Specifies the UTC date for the time source DATE (see method RsCmwWcdmaSig.Configure.Cell.Time.tsource) .

param value

see the help for DateStruct structure arguments.

set_daylight_saving_time(enable: RsCmwWcdmaSig.enums.DsTime)None[source]
# SCPI: CONFigure:WCDMa: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 RsCmwWcdmaSig.Configure.Cell.Time. tsource) .

param enable

P1H | P2H | ON | OFF P1H: +1h offset P2H: +2h offset Additional OFF | ON disables | enables DST

set_ltz_offset(time_zone_offset: float)None[source]
# SCPI: CONFigure:WCDMa: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 RsCmwWcdmaSig.Configure.Cell.Time.tsource) .

param time_zone_offset

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

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

If enabled, sends the full and short network name within date and time signaling to the UE.

param enable

OFF | ON

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

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

param enable

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

set_time(value: RsCmwWcdmaSig.Implementations.Configure_.Cell_.Time.Time.TimeStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TIME:TIME
driver.configure.cell.time.set_time(value = TimeStruct())

Specifies the UTC time for the time source DATE (see method RsCmwWcdmaSig.Configure.Cell.Time.tsource) .

param value

see the help for TimeStruct structure arguments.

set_tsource(source_time: RsCmwWcdmaSig.enums.SourceTime)None[source]
# SCPI: CONFigure:WCDMa: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 RsCmwWcdmaSig.Configure.Cell.Time.date

  • method RsCmwWcdmaSig.Configure.Cell.Time.time

  • method RsCmwWcdmaSig.Configure.Cell.Time.daylightSavingTime

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