Leap
SCPI Commands :
[SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:STATe
[SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:SYSTem
- Commands in total: 5Subgroups: 2Direct child commands: 2
- get_state() bool[source]
# [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.
- Returns:
state: 1 | ON | 0| OFF
- get_system() HybridLs[source]
# [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.
- Returns:
system: BEIDou
- set_state(state: bool) None[source]
# [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.
- Parameters:
state – 1 | ON | 0| OFF
- set_system(system: HybridLs) None[source]
# [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.
- Parameters:
system – BEIDou
Cloning the Group
# Create a copy of the original group, that exists independently
leap_copy = driver.source.bb.gnss.time.conversion.independent.leap.clone()
Subgroups