openwebrx/csdr/module/freedv.py

12 lines
260 B
Python
Raw Normal View History

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", "-", "-"]
)