openwebrx/csdr/chain/dumphfdl.py

17 lines
405 B
Python
Raw Permalink Normal View History

2023-09-03 23:48:56 +02:00
from csdr.chain.demodulator import ServiceDemodulator
2023-09-05 23:25:32 +02:00
from owrx.hfdl.dumphfdl import DumpHFDLModule, HFDLMessageParser
2023-09-03 23:48:56 +02:00
class DumpHFDL(ServiceDemodulator):
def __init__(self):
super().__init__([
DumpHFDLModule(),
2023-09-05 23:25:32 +02:00
HFDLMessageParser(),
2023-09-03 23:48:56 +02:00
])
def getFixedAudioRate(self) -> int:
return 12000
2023-09-16 06:14:36 +02:00
def supportsSquelch(self) -> bool:
return False