mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-04 14:08:38 +00:00
12 lines
349 B
Python
12 lines
349 B
Python
from .connector import ConnectorSource
|
|
from owrx.command import Flag, Option
|
|
|
|
|
|
class RtlSdrSource(ConnectorSource):
|
|
def getCommandMapper(self):
|
|
return (
|
|
super()
|
|
.getCommandMapper()
|
|
.setBase("rtl_connector")
|
|
.setMappings({"bias_tee": Flag("-b"), "direct_sampling": Option("-e")})
|
|
)
|