mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-02-14 11:44:41 +01:00
20 lines
487 B
Python
20 lines
487 B
Python
from pycsdr.modules import AmDemod
|
|
from owrx.acars.acarsdec import AcarsDecModule, AcarsParser
|
|
from csdr.chain.demodulator import ServiceDemodulator
|
|
from csdr.module import JsonParser
|
|
|
|
|
|
class AcarsDec(ServiceDemodulator):
|
|
def __init__(self):
|
|
super().__init__([
|
|
AmDemod(),
|
|
AcarsDecModule(),
|
|
AcarsParser(),
|
|
])
|
|
|
|
def getFixedAudioRate(self) -> int:
|
|
return 12500
|
|
|
|
def supportsSquelch(self) -> bool:
|
|
return False
|