disable squelch on a number of modes

This commit is contained in:
Jakob Ketterl 2023-09-16 06:14:36 +02:00
parent 6df80829d0
commit faa74c6790
4 changed files with 12 additions and 0 deletions

View file

@ -22,3 +22,6 @@ class Dump1090(ServiceDemodulator):
def isSecondaryFftShown(self):
return False
def supportsSquelch(self) -> bool:
return False

View file

@ -11,3 +11,6 @@ class DumpHFDL(ServiceDemodulator):
def getFixedAudioRate(self) -> int:
return 12000
def supportsSquelch(self) -> bool:
return False

View file

@ -14,3 +14,6 @@ class DumpVDL2(ServiceDemodulator):
def getFixedAudioRate(self) -> int:
return 105000
def supportsSquelch(self) -> bool:
return False

View file

@ -14,3 +14,6 @@ class Rtl433(ServiceDemodulator):
JsonParser("ISM"),
]
)
def supportsSquelch(self) -> bool:
return False