openwebrx/csdr/chain/dumphfdl.py
2023-09-16 06:14:36 +02:00

17 lines
405 B
Python

from csdr.chain.demodulator import ServiceDemodulator
from owrx.hfdl.dumphfdl import DumpHFDLModule, HFDLMessageParser
class DumpHFDL(ServiceDemodulator):
def __init__(self):
super().__init__([
DumpHFDLModule(),
HFDLMessageParser(),
])
def getFixedAudioRate(self) -> int:
return 12000
def supportsSquelch(self) -> bool:
return False