Leap

SCPI Commands :

[SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:STATe
[SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:SYSTem
class LeapCls[source]

Leap commands group definition. 5 total commands, 2 Subgroups, 2 group commands

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:STATe
value: bool = driver.source.bb.gnss.time.conversion.independent.leap.get_state()

Enables the leap second transition.

return:

state: 1| ON| 0| OFF

get_system() HybridLs[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:SYSTem
value: enums.HybridLs = driver.source.bb.gnss.time.conversion.independent.leap.get_system()

Queries the GNSS for leap second transition that is the BeiDou GNSS.

return:

system: BEIDou

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:STATe
driver.source.bb.gnss.time.conversion.independent.leap.set_state(state = False)

Enables the leap second transition.

param state:

1| ON| 0| OFF

set_system(system: HybridLs) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:SYSTem
driver.source.bb.gnss.time.conversion.independent.leap.set_system(system = enums.HybridLs.BEIDou)

Queries the GNSS for leap second transition that is the BeiDou GNSS.

param system:

BEIDou

Cloning the Group

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

Subgroups