From c3d89bd4bff4ba47279f6cec8c85e54b6769195d Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Fri, 10 Jan 2020 23:31:51 +0100 Subject: [PATCH] fix device mixup --- owrx/feature.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/owrx/feature.py b/owrx/feature.py index ec41e6e..c92d463 100644 --- a/owrx/feature.py +++ b/owrx/feature.py @@ -239,7 +239,7 @@ class FeatureDetector(object): except FileNotFoundError: return False - def has_soapy_sdrplay(self): + def has_soapy_rtl_sdr(self): """ The SoapySDR module for rtl-sdr devices can be used as an alternative to the rtl_connector. It provides additional support for the direct sampling mod. @@ -248,7 +248,7 @@ class FeatureDetector(object): """ return self._has_soapy_driver("rtlsdr") - def has_soapy_rtl_sdr(self): + def has_soapy_sdrplay(self): """ The SoapySDR module for sdrplay devices is required for interfacing with SDRPlay devices (RSP1*, RSP2*, RSPDuo)