mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
17 lines
524 B
Python
17 lines
524 B
Python
from owrx.command import Option
|
|
from .direct import DirectSource
|
|
|
|
|
|
class FifiSdrSource(DirectSource):
|
|
def __init__(self, id, props, port):
|
|
super().__init__(id, props, port)
|
|
self.getCommandMapper().setBase("arecord").setMappings(
|
|
{"device": Option("-D"), "samp_rate": Option("-r")}
|
|
).setStatic("-f S16_LE -c2 -")
|
|
|
|
def getEventNames(self):
|
|
return super().getEventNames() + ["device"]
|
|
|
|
def getFormatConversion(self):
|
|
return "csdr convert_s16_f | csdr gain_ff 30"
|