openwebrx-clone/csdr/module/msk144.py

14 lines
300 B
Python
Raw Normal View History

2023-02-14 14:39:59 +00:00
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