mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
15 lines
359 B
Python
15 lines
359 B
Python
|
|
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
|