Utc

SCPI Commands :

[SOURce<HW>]:BB:GNSS:TIME:CONVersion:UTCSu:UTC:DATE
[SOURce<HW>]:BB:GNSS:TIME:CONVersion:UTCSu:UTC:IOFFset
[SOURce<HW>]:BB:GNSS:TIME:CONVersion:UTCSu:UTC:WNOT
class UtcCls[source]

Utc commands group definition. 9 total commands, 3 Subgroups, 3 group commands

class DateStruct[source]

Structure for reading output parameters. Fields:

  • Year: int: integer Range: 1996 to 9999

  • Month: int: integer Range: 1 to 12

  • Day: int: integer Range: 1 to 31

get_date() DateStruct[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:UTCSu:UTC:DATE
value: DateStruct = driver.source.bb.gnss.time.conversion.utcsu.utc.get_date()

Enters the date for the UTC-UTC(SU) data in DMS format.

return

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

get_ioffset() int[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:UTCSu:UTC:IOFFset
value: int = driver.source.bb.gnss.time.conversion.utcsu.utc.get_ioffset()

Queries the integer offset.

return

integer_offset: integer Range: 0 to 604800

get_wnot() int[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:UTCSu:UTC:WNOT
value: int = driver.source.bb.gnss.time.conversion.utcsu.utc.get_wnot()

Sets the UTC data reference week number, WNt.

return

wnot: integer Range: 0 to 255

set_wnot(wnot: int) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:UTCSu:UTC:WNOT
driver.source.bb.gnss.time.conversion.utcsu.utc.set_wnot(wnot = 1)

Sets the UTC data reference week number, WNt.

param wnot

integer Range: 0 to 255

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.gnss.time.conversion.utcsu.utc.clone()

Subgroups