Pilot

SCPI Commands :

[SOURce<HW>]:BB:RADio:FM:[SPECial]:PILot:PHASe
[SOURce<HW>]:BB:RADio:FM:[SPECial]:PILot:[STATe]
class PilotCls[source]

Pilot commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_phase() float[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:[SPECial]:PILot:PHASe
value: float = driver.source.bb.radio.fm.special.pilot.get_phase()

Sets the phase offset of the 19 kHz pilot tone.

return:

offset_pilot: float Range: -180 to 180

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:[SPECial]:PILot:[STATe]
value: bool = driver.source.bb.radio.fm.special.pilot.get_state()

Enables/disables the 19 kHz pilot tone.

return:

pilot: 1| ON| 0| OFF

set_phase(offset_pilot: float) None[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:[SPECial]:PILot:PHASe
driver.source.bb.radio.fm.special.pilot.set_phase(offset_pilot = 1.0)

Sets the phase offset of the 19 kHz pilot tone.

param offset_pilot:

float Range: -180 to 180

set_state(pilot: bool) None[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:[SPECial]:PILot:[STATe]
driver.source.bb.radio.fm.special.pilot.set_state(pilot = False)

Enables/disables the 19 kHz pilot tone.

param pilot:

1| ON| 0| OFF