openwebrx-clone/csdr/module/msk144.py
2023-02-14 15:39:59 +01:00

14 lines
300 B
Python

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