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):
|
def isSecondaryFftShown(self):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def supportsSquelch(self) -> bool:
|
||||||
|
return False
|
||||||
|
|
|
||||||
|
|
@ -11,3 +11,6 @@ class DumpHFDL(ServiceDemodulator):
|
||||||
|
|
||||||
def getFixedAudioRate(self) -> int:
|
def getFixedAudioRate(self) -> int:
|
||||||
return 12000
|
return 12000
|
||||||
|
|
||||||
|
def supportsSquelch(self) -> bool:
|
||||||
|
return False
|
||||||
|
|
|
||||||
|
|
@ -14,3 +14,6 @@ class DumpVDL2(ServiceDemodulator):
|
||||||
|
|
||||||
def getFixedAudioRate(self) -> int:
|
def getFixedAudioRate(self) -> int:
|
||||||
return 105000
|
return 105000
|
||||||
|
|
||||||
|
def supportsSquelch(self) -> bool:
|
||||||
|
return False
|
||||||
|
|
|
||||||
|
|
@ -14,3 +14,6 @@ class Rtl433(ServiceDemodulator):
|
||||||
JsonParser("ISM"),
|
JsonParser("ISM"),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def supportsSquelch(self) -> bool:
|
||||||
|
return False
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue