add source for rf103 (experimental)

This commit is contained in:
Jakob Ketterl
2020-10-25 16:53:18 +01:00
parent e6a04aa5e9
commit dc03639cad
3 changed files with 20 additions and 1 deletions

15
owrx/source/rf103.py Normal file
View File

@ -0,0 +1,15 @@
from owrx.source.direct import DirectSource
from owrx.command import Option
import time
class Rf103Source(DirectSource):
def getCommandMapper(self):
return super().getCommandMapper().setBase("rf103_sdr -i /home/jakob/workspace/RF103/rx888.img").setMappings({
"samp_rate": Option("-s"),
"center_freq": Option("-f"),
"attenuation": Option("-a"),
})
def sleepOnRestart(self):
time.sleep(1)