openwebrx/csdr/chain/dumphfdl.py
2023-09-05 23:25:32 +02:00

14 lines
344 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