mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
80 lines
2.4 KiB
Python
80 lines
2.4 KiB
Python
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
|
from owrx.form.input import Input, CheckboxInput
|
|
from owrx.form.input.device import BiasTeeInput
|
|
from owrx.form.input.validator import Range
|
|
from typing import List
|
|
|
|
|
|
class SdrplaySource(SoapyConnectorSource):
|
|
def getSoapySettingsMappings(self):
|
|
mappings = super().getSoapySettingsMappings()
|
|
mappings.update(
|
|
{
|
|
"bias_tee": "biasT_ctrl",
|
|
"rf_notch": "rfnotch_ctrl",
|
|
"dab_notch": "dabnotch_ctrl",
|
|
"external_reference": "extref_ctrl",
|
|
"hdr_ctrl": "hdr_ctrl",
|
|
}
|
|
)
|
|
return mappings
|
|
|
|
def getDriver(self):
|
|
return "sdrplay"
|
|
|
|
|
|
class SdrplayDeviceDescription(SoapyConnectorDeviceDescription):
|
|
def getName(self):
|
|
return "SDRPlay device (RSP1, RSP2, RSPDuo, RSPDx)"
|
|
|
|
def getGainStages(self):
|
|
return ["RFGR", "IFGR"]
|
|
|
|
def getInputs(self) -> List[Input]:
|
|
return super().getInputs() + [
|
|
BiasTeeInput(),
|
|
CheckboxInput(
|
|
"rf_notch",
|
|
"Enable RF notch filter",
|
|
),
|
|
CheckboxInput(
|
|
"dab_notch",
|
|
"Enable DAB notch filter",
|
|
),
|
|
CheckboxInput(
|
|
"external_reference",
|
|
"Enable external reference clock",
|
|
),
|
|
CheckboxInput(
|
|
"hdr_ctrl",
|
|
"Enable RSPdx HDR mode",
|
|
)
|
|
]
|
|
|
|
def getDeviceOptionalKeys(self):
|
|
return super().getDeviceOptionalKeys() + [
|
|
"bias_tee", "rf_notch", "dab_notch", "external_reference", "hdr_ctrl"
|
|
]
|
|
|
|
def getProfileOptionalKeys(self):
|
|
return super().getProfileOptionalKeys() + [
|
|
"bias_tee", "rf_notch", "dab_notch", "external_reference", "hdr_ctrl"
|
|
]
|
|
|
|
def getSampleRateRanges(self) -> List[Range]:
|
|
# this is from SoapySDRPlay3's implementation of listSampleRates().
|
|
# i don't think it's accurate, but this is the limitation we'd be running into if we had proper soapy
|
|
# integration.
|
|
return [
|
|
Range(62500),
|
|
Range(96000),
|
|
Range(125000),
|
|
Range(192000),
|
|
Range(250000),
|
|
Range(384000),
|
|
Range(500000),
|
|
Range(768000),
|
|
Range(1000000),
|
|
Range(2000000, 10660000),
|
|
]
|