2021-02-19 15:29:17 +01:00
|
|
|
from owrx.source.connector import ConnectorSource, ConnectorDeviceDescription
|
2020-04-01 23:37:40 +02:00
|
|
|
from owrx.command import Flag, Option
|
2021-02-19 14:44:16 +01:00
|
|
|
from typing import List
|
|
|
|
|
from owrx.form import Input, TextInput
|
2021-02-19 18:45:29 +01:00
|
|
|
from owrx.form.converter import OptionalConverter
|
2019-12-21 20:58:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class RtlSdrSource(ConnectorSource):
|
2019-12-31 19:14:05 +01:00
|
|
|
def getCommandMapper(self):
|
2020-04-01 23:37:40 +02:00
|
|
|
return (
|
|
|
|
|
super()
|
|
|
|
|
.getCommandMapper()
|
|
|
|
|
.setBase("rtl_connector")
|
|
|
|
|
.setMappings({"bias_tee": Flag("-b"), "direct_sampling": Option("-e")})
|
2020-03-26 13:33:32 +01:00
|
|
|
)
|
2021-02-19 14:44:16 +01:00
|
|
|
|
|
|
|
|
|
2021-02-19 15:29:17 +01:00
|
|
|
class RtlSdrDeviceDescription(ConnectorDeviceDescription):
|
2021-02-19 14:44:16 +01:00
|
|
|
def getInputs(self) -> List[Input]:
|
2021-02-19 14:53:30 +01:00
|
|
|
return self.mergeInputs(
|
|
|
|
|
super().getInputs(),
|
|
|
|
|
[
|
2021-02-19 18:45:29 +01:00
|
|
|
TextInput(
|
|
|
|
|
"device",
|
|
|
|
|
"Device identifier",
|
|
|
|
|
infotext="Device serial number or index",
|
|
|
|
|
converter=OptionalConverter(),
|
|
|
|
|
),
|
2021-02-19 14:53:30 +01:00
|
|
|
],
|
|
|
|
|
)
|