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