From c387fe0fe9b278f8f1ef2ae2a817033b4388cbd5 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 14 Mar 2020 01:56:17 +0100 Subject: [PATCH] add fictional bias_tee mapping for rtl_sdr_soapy needs to be implemented in SoapyRTLSDR first --- owrx/source/rtl_sdr_soapy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owrx/source/rtl_sdr_soapy.py b/owrx/source/rtl_sdr_soapy.py index fe85a31..393286c 100644 --- a/owrx/source/rtl_sdr_soapy.py +++ b/owrx/source/rtl_sdr_soapy.py @@ -4,7 +4,7 @@ from .soapy import SoapyConnectorSource class RtlSdrSoapySource(SoapyConnectorSource): def getSoapySettingsMappings(self): mappings = super().getSoapySettingsMappings() - mappings.update({"direct_sampling": "direct_samp"}) + mappings.update({"direct_sampling": "direct_samp", "bias_tee": "bias_tee"}) return mappings def getDriver(self):