openwebrx/csdr/module/freedv.py
2023-08-21 23:18:58 +02:00

12 lines
260 B
Python

from pycsdr.types import Format
from pycsdr.modules import ExecModule
class FreeDVModule(ExecModule):
def __init__(self):
super().__init__(
Format.SHORT,
Format.SHORT,
["freedv_rx", "1600", "-", "-"]
)