remove redpitaya source (working with hpsdr_connector)

This commit is contained in:
Jakob Ketterl
2021-04-05 15:48:03 +02:00
parent b877d8439a
commit a9990f1f41
8 changed files with 2 additions and 67 deletions

View File

@ -65,7 +65,6 @@ class FeatureDetector(object):
"pluto_sdr": ["soapy_connector", "soapy_pluto_sdr"],
"soapy_remote": ["soapy_connector", "soapy_remote"],
"uhd": ["soapy_connector", "soapy_uhd"],
"red_pitaya": ["soapy_connector", "soapy_red_pitaya"],
"radioberry": ["soapy_connector", "soapy_radioberry"],
"fcdpp": ["soapy_connector", "soapy_fcdpp"],
"sddc": ["sddc_connector"],
@ -389,14 +388,6 @@ class FeatureDetector(object):
"""
return self._has_soapy_driver("uhd")
def has_soapy_red_pitaya(self):
"""
The SoapyRedPitaya allows Red Pitaya deviced to be used with SoapySDR.
You can get it [here](https://github.com/pothosware/SoapyRedPitaya/wiki).
"""
return self._has_soapy_driver("redpitaya")
def has_soapy_radioberry(self):
"""
The Radioberry is a SDR hat for the Raspberry Pi.

View File

@ -1,10 +0,0 @@
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
class RedPitayaSource(SoapyConnectorSource):
def getDriver(self):
return "redpitaya"
class RedPitayaDeviceDescription(SoapyConnectorDeviceDescription):
pass