add msk144demodulator chain

This commit is contained in:
Jakob Ketterl
2023-02-14 15:39:59 +01:00
parent 252edb7a5a
commit f58023f3e5
4 changed files with 30 additions and 0 deletions

13
csdr/module/msk144.py Normal file
View File

@ -0,0 +1,13 @@
from pycsdr.types import Format
from csdr.module import PopenModule
class Msk144Module(PopenModule):
def getCommand(self):
return ["msk144decoder"]
def getInputFormat(self) -> Format:
return Format.SHORT
def getOutputFormat(self) -> Format:
return Format.CHAR