2021-02-19 15:29:17 +01:00
|
|
|
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
2021-04-29 15:17:21 +02:00
|
|
|
from owrx.form.input import Input, CheckboxInput, DropdownInput, DropdownEnum
|
|
|
|
from owrx.form.input.device import BiasTeeInput
|
2021-02-20 18:48:12 +01:00
|
|
|
from typing import List
|
2019-12-21 20:58:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
class SdrplaySource(SoapyConnectorSource):
|
2020-03-14 01:15:25 +01:00
|
|
|
def getSoapySettingsMappings(self):
|
|
|
|
mappings = super().getSoapySettingsMappings()
|
2020-03-14 01:21:43 +01:00
|
|
|
mappings.update(
|
|
|
|
{
|
|
|
|
"bias_tee": "biasT_ctrl",
|
|
|
|
"rf_notch": "rfnotch_ctrl",
|
|
|
|
"dab_notch": "dabnotch_ctrl",
|
2020-04-26 13:49:03 +02:00
|
|
|
"if_mode": "if_mode",
|
2020-12-27 13:52:49 +01:00
|
|
|
"external_reference": "extref_ctrl",
|
2020-03-14 01:21:43 +01:00
|
|
|
}
|
|
|
|
)
|
2020-03-14 01:15:25 +01:00
|
|
|
return mappings
|
|
|
|
|
2019-12-21 20:58:28 +01:00
|
|
|
def getDriver(self):
|
|
|
|
return "sdrplay"
|
2021-02-19 15:29:17 +01:00
|
|
|
|
|
|
|
|
2021-02-20 19:00:28 +01:00
|
|
|
class IfModeOptions(DropdownEnum):
|
|
|
|
IFMODE_ZERO_IF = "Zero-IF"
|
|
|
|
IFMODE_450 = "450kHz"
|
|
|
|
IFMODE_1620 = "1620kHz"
|
|
|
|
IFMODE_2048 = "2048kHz"
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.value
|
|
|
|
|
|
|
|
|
2021-02-19 15:29:17 +01:00
|
|
|
class SdrplayDeviceDescription(SoapyConnectorDeviceDescription):
|
2021-04-17 17:42:08 +02:00
|
|
|
def getName(self):
|
|
|
|
return "SDRPlay device (RSP1, RSP2, RSPDuo, RSPDx)"
|
|
|
|
|
2021-02-19 18:18:25 +01:00
|
|
|
def getGainStages(self):
|
|
|
|
return ["RFGR", "IFGR"]
|
2021-02-20 18:48:12 +01:00
|
|
|
|
|
|
|
def getInputs(self) -> List[Input]:
|
2021-02-22 00:35:47 +01:00
|
|
|
return super().getInputs() + [
|
|
|
|
BiasTeeInput(),
|
|
|
|
CheckboxInput(
|
|
|
|
"rf_notch",
|
2021-02-22 00:57:02 +01:00
|
|
|
"Enable RF notch filter",
|
2021-02-22 00:35:47 +01:00
|
|
|
),
|
|
|
|
CheckboxInput(
|
|
|
|
"dab_notch",
|
2021-02-22 00:57:02 +01:00
|
|
|
"Enable DAB notch filter",
|
2021-02-22 00:35:47 +01:00
|
|
|
),
|
|
|
|
DropdownInput(
|
|
|
|
"if_mode",
|
|
|
|
"IF Mode",
|
|
|
|
IfModeOptions,
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
2021-03-24 23:17:50 +01:00
|
|
|
def getDeviceOptionalKeys(self):
|
|
|
|
return super().getDeviceOptionalKeys() + ["bias_tee", "rf_notch", "dab_notch", "if_mode"]
|
2021-02-23 18:32:23 +01:00
|
|
|
|
|
|
|
def getProfileOptionalKeys(self):
|
|
|
|
return super().getProfileOptionalKeys() + ["bias_tee", "rf_notch", "dab_notch", "if_mode"]
|