2021-09-07 15:31:32 +00:00
|
|
|
from csdr.module import PopenModule
|
2021-09-07 12:45:52 +00:00
|
|
|
from pycsdr.types import Format
|
|
|
|
|
|
|
|
|
2021-09-07 15:31:32 +00:00
|
|
|
class M17Module(PopenModule):
|
2021-09-07 12:45:52 +00:00
|
|
|
def getInputFormat(self) -> Format:
|
|
|
|
return Format.SHORT
|
|
|
|
|
|
|
|
def getOutputFormat(self) -> Format:
|
|
|
|
return Format.SHORT
|
|
|
|
|
2021-09-07 15:31:32 +00:00
|
|
|
def getCommand(self):
|
|
|
|
return ["m17-demod"]
|