mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-02-07 08:14:17 +01:00
15 lines
361 B
Python
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
|