mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-08 09:39:58 +01:00
add service demodulators
This commit is contained in:
parent
f3ef0acd07
commit
7d2d3a904f
|
|
@ -321,6 +321,12 @@ class ServiceHandler(SdrSourceEventClient):
|
|||
elif mod == "vdl2":
|
||||
from csdr.chain.dumpvdl2 import DumpVDL2
|
||||
return DumpVDL2()
|
||||
elif mod == "pocsag":
|
||||
from csdr.chain.digiham import PocsagDemodulator
|
||||
return PocsagDemodulator()
|
||||
elif mod == "ism":
|
||||
from csdr.chain.rtl433 import Rtl433
|
||||
return Rtl433()
|
||||
|
||||
raise ValueError("unsupported service modulation: {}".format(mod))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue