Time

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CELL:TIME:TIME
class TimeCls[source]

Time commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class TimeStruct[source]

Response structure. Fields:

  • Hour: int: integer Range: 0 to 23

  • Minute: int: integer Range: 0 to 59

  • Second: int: integer Range: 0 to 59

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

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

return:

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

set(hour: int, minute: int, second: int) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL:TIME:TIME
driver.configure.cell.time.time.set(hour = 1, minute = 1, second = 1)

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

param hour:

integer Range: 0 to 23

param minute:

integer Range: 0 to 59

param second:

integer Range: 0 to 59