LtOffset

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:SYSTem:LTOFfset:HEX
CONFigure:CDMA:SIGNaling<Instance>:SYSTem:LTOFfset
class LtOffset[source]

LtOffset commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Sign: float: MINU | PLUS

  • Hour: int: Range: 0 to 16

  • Minute: int: Range: 0 | 30

get_hex()str[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SYSTem:LTOFfset:HEX
value: str = driver.configure.system.ltOffset.get_hex()

Displays time offset from UTC in hexadecimal format according to the local time zone. Local time offset = (sign(h) *(abs(h) *60+m) /30) AND ((1UL<<6) -1)

return

local_time_off_hex: Range: #H00 to #HFF

get_value()ValueStruct[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SYSTem:LTOFfset
value: ValueStruct = driver.configure.system.ltOffset.get_value()

Defines the time offset from UTC according to the local time zone. Possible range is from -16:00 to +15:30

return

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

set_value(value: RsCmwCdma2kSig.Implementations.Configure_.System_.LtOffset.LtOffset.ValueStruct)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SYSTem:LTOFfset
driver.configure.system.ltOffset.set_value(value = ValueStruct())

Defines the time offset from UTC according to the local time zone. Possible range is from -16:00 to +15:30

param value

see the help for ValueStruct structure arguments.