17 lines
448 B
Python
17 lines
448 B
Python
from .connector import ConnectorSource
|
|
from owrx.command import Flag, Option, Argument
|
|
|
|
|
|
class RtlTcpSource(ConnectorSource):
|
|
def getCommandMapper(self):
|
|
return (
|
|
super()
|
|
.getCommandMapper()
|
|
.setBase("rtl_tcp_connector")
|
|
.setMappings({
|
|
"bias_tee": Flag("-b"),
|
|
"direct_sampling": Option("-e"),
|
|
"remote": Argument(),
|
|
})
|
|
)
|