mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-20 15:40:33 +01:00
enable vdl2 as a service
This commit is contained in:
parent
6b026e8450
commit
7758ff6541
|
|
@ -197,6 +197,7 @@ class Modes(object):
|
|||
underlying=["empty"],
|
||||
bandpass=Bandpass(-12500, 12500),
|
||||
requirements=["dumpvdl2"],
|
||||
service=True,
|
||||
squelch=False,
|
||||
)
|
||||
]
|
||||
|
|
|
|||
|
|
@ -318,6 +318,9 @@ class ServiceHandler(SdrSourceEventClient):
|
|||
elif mod == "hfdl":
|
||||
from csdr.chain.dumphfdl import DumpHFDL
|
||||
return DumpHFDL()
|
||||
elif mod == "vdl2":
|
||||
from csdr.chain.dumpvdl2 import DumpVDL2
|
||||
return DumpVDL2()
|
||||
|
||||
raise ValueError("unsupported service modulation: {}".format(mod))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue