State

SCPI Command :

[SENSe]:ADEMod:SQUelch[:STATe]
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get() bool[source]
# [SENSe]:ADEMod:SQUelch[:STATe]
value: bool = driver.sense.ademod.squelch.state.get()

Activates the squelch function, i.e. if the signal falls below a defined threshold (see method RsFsw.sense.ademod.squelch.level.set() ) , the demodulated data is automatically set to 0.

Returns:

state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

set(state: bool) None[source]
# [SENSe]:ADEMod:SQUelch[:STATe]
driver.sense.ademod.squelch.state.set(state = False)

Activates the squelch function, i.e. if the signal falls below a defined threshold (see method RsFsw.sense.ademod.squelch.level.set() ) , the demodulated data is automatically set to 0.

Parameters:

state – ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on