openwebrx/csdr/chain/acarsdec.py
2023-09-08 16:44:15 +02:00

15 lines
361 B
Python

from owrx.acars.acarsdec import AcarsDecModule
from csdr.chain.demodulator import ServiceDemodulator
from csdr.module import JsonParser
class AcarsDec(ServiceDemodulator):
def __init__(self):
super().__init__([
AcarsDecModule(),
JsonParser("ACARS"),
])
def getFixedAudioRate(self) -> int:
return 12500