mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-02-11 02:04:55 +01:00
switch to audio stream (instead of IQ)
This commit is contained in:
parent
f1097e8f64
commit
4bce1024ba
|
|
@ -1,3 +1,4 @@
|
|||
from pycsdr.modules import AmDemod
|
||||
from owrx.acars.acarsdec import AcarsDecModule
|
||||
from csdr.chain.demodulator import ServiceDemodulator
|
||||
from csdr.module import JsonParser
|
||||
|
|
@ -6,6 +7,7 @@ from csdr.module import JsonParser
|
|||
class AcarsDec(ServiceDemodulator):
|
||||
def __init__(self):
|
||||
super().__init__([
|
||||
AmDemod(),
|
||||
AcarsDecModule(),
|
||||
JsonParser("ACARS"),
|
||||
])
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ from pycsdr.types import Format
|
|||
class AcarsDecModule(ExecModule):
|
||||
def __init__(self):
|
||||
super().__init__(
|
||||
Format.COMPLEX_FLOAT,
|
||||
Format.FLOAT,
|
||||
Format.CHAR,
|
||||
["acarsdec", "-s", "-o", "4"]
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue