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

11 lines
267 B
Python

from pycsdr.modules import ExecModule
from pycsdr.types import Format
class AcarsDecModule(ExecModule):
def __init__(self):
super().__init__(
Format.COMPLEX_FLOAT,
Format.CHAR,
["acarsdec", "-s", "-o", "4"]
)