openwebrx-clone/owrx/source/rtl_tcp.py

17 lines
448 B
Python
Raw Normal View History

from .connector import ConnectorSource
2020-08-16 21:22:46 +00:00
from owrx.command import Flag, Option, Argument
class RtlTcpSource(ConnectorSource):
def getCommandMapper(self):
return (
super()
.getCommandMapper()
.setBase("rtl_tcp_connector")
2020-08-16 21:22:46 +00:00
.setMappings({
"bias_tee": Flag("-b"),
"direct_sampling": Option("-e"),
"remote": Argument(),
})
)