openwebrx-clone/owrx/m17.py
2021-09-07 17:31:32 +02:00

14 lines
294 B
Python

from csdr.module import PopenModule
from pycsdr.types import Format
class M17Module(PopenModule):
def getInputFormat(self) -> Format:
return Format.SHORT
def getOutputFormat(self) -> Format:
return Format.SHORT
def getCommand(self):
return ["m17-demod"]