openwebrx/csdr/chain/dumphfdl.py

15 lines
359 B
Python
Raw Normal View History

2023-09-03 23:48:56 +02:00
from csdr.chain.demodulator import ServiceDemodulator
from owrx.hfdl.dumphfdl import DumpHFDLModule
from csdr.module import JsonParser
class DumpHFDL(ServiceDemodulator):
def __init__(self):
super().__init__([
DumpHFDLModule(),
JsonParser("HFDL"),
])
def getFixedAudioRate(self) -> int:
return 12000