mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-20 22:05:13 +00:00
11 lines
267 B
Python
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"]
|
|
)
|