Marker

SCPI Commands :

[SOURce<HW>]:[ILS]:MBEacon:MARKer:FREQuency
[SOURce<HW>]:[ILS]:MBEacon:[MARKer]:DEPTh
[SOURce<HW>]:[ILS]:MBEacon:[MARKer]:PULSed
class MarkerCls[source]

Marker commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_depth() float[source]
# SCPI: [SOURce<HW>]:[ILS]:MBEacon:[MARKer]:DEPTh
value: float = driver.source.ils.mbeacon.marker.get_depth()

Sets the modulation depth of the marker signal for the ILS marker beacon signal.

return:

depth: float Range: 0 to 100

get_frequency() int[source]
# SCPI: [SOURce<HW>]:[ILS]:MBEacon:MARKer:FREQuency
value: int = driver.source.ils.mbeacon.marker.get_frequency()

Sets the modulation frequency of the marker signal for the ILS marker beacon modulation signal.

return:

frequency: 400| 1300| 3000 Unit: Hz

get_pulsed() bool[source]
# SCPI: [SOURce<HW>]:[ILS]:MBEacon:[MARKer]:PULSed
value: bool = driver.source.ils.mbeacon.marker.get_pulsed()

Activates the modulation of a pulsed marker signal (morse coding) .

return:

pulsed: 1| ON| 0| OFF

set_depth(depth: float) None[source]
# SCPI: [SOURce<HW>]:[ILS]:MBEacon:[MARKer]:DEPTh
driver.source.ils.mbeacon.marker.set_depth(depth = 1.0)

Sets the modulation depth of the marker signal for the ILS marker beacon signal.

param depth:

float Range: 0 to 100

set_frequency(frequency: int) None[source]
# SCPI: [SOURce<HW>]:[ILS]:MBEacon:MARKer:FREQuency
driver.source.ils.mbeacon.marker.set_frequency(frequency = 1)

Sets the modulation frequency of the marker signal for the ILS marker beacon modulation signal.

param frequency:

400| 1300| 3000 Unit: Hz

set_pulsed(pulsed: bool) None[source]
# SCPI: [SOURce<HW>]:[ILS]:MBEacon:[MARKer]:PULSed
driver.source.ils.mbeacon.marker.set_pulsed(pulsed = False)

Activates the modulation of a pulsed marker signal (morse coding) .

param pulsed:

1| ON| 0| OFF