mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-31 21:59:58 +01:00
disable squelch on a number of modes
This commit is contained in:
parent
6df80829d0
commit
faa74c6790
|
|
@ -22,3 +22,6 @@ class Dump1090(ServiceDemodulator):
|
|||
|
||||
def isSecondaryFftShown(self):
|
||||
return False
|
||||
|
||||
def supportsSquelch(self) -> bool:
|
||||
return False
|
||||
|
|
|
|||
|
|
@ -11,3 +11,6 @@ class DumpHFDL(ServiceDemodulator):
|
|||
|
||||
def getFixedAudioRate(self) -> int:
|
||||
return 12000
|
||||
|
||||
def supportsSquelch(self) -> bool:
|
||||
return False
|
||||
|
|
|
|||
|
|
@ -14,3 +14,6 @@ class DumpVDL2(ServiceDemodulator):
|
|||
|
||||
def getFixedAudioRate(self) -> int:
|
||||
return 105000
|
||||
|
||||
def supportsSquelch(self) -> bool:
|
||||
return False
|
||||
|
|
|
|||
|
|
@ -14,3 +14,6 @@ class Rtl433(ServiceDemodulator):
|
|||
JsonParser("ISM"),
|
||||
]
|
||||
)
|
||||
|
||||
def supportsSquelch(self) -> bool:
|
||||
return False
|
||||
|
|
|
|||
Loading…
Reference in a new issue