mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
12 lines
260 B
Python
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", "-", "-"]
|
|
)
|