Adding support for PlutoSDR (Adalm Pluto) via SoapySDR
This commit is contained in:
parent
d7aaf0d00e
commit
7bf4c48733
@ -29,6 +29,7 @@ class FeatureDetector(object):
|
||||
"airspyhf": ["soapy_connector", "soapy_airspyhf"],
|
||||
"lime_sdr": ["soapy_connector", "soapy_lime_sdr"],
|
||||
"fifi_sdr": ["alsa"],
|
||||
"pluto_sdr": ["soapy_connector", "soapy_pluto_sdr"],
|
||||
# optional features and their requirements
|
||||
"digital_voice_digiham": ["digiham", "sox"],
|
||||
"digital_voice_dsd": ["dsd", "sox", "digiham"],
|
||||
@ -281,6 +282,14 @@ class FeatureDetector(object):
|
||||
"""
|
||||
return self._has_soapy_driver("LMS7")
|
||||
|
||||
def has_soapy_pluto_sdr(self):
|
||||
"""
|
||||
The SoapySDR module for PlutoSDR devices is required for interfacing with PlutoSDR devices.
|
||||
|
||||
You can get it [here](https://github.com/photosware/SoapyPlutoSDR).
|
||||
"""
|
||||
return self._has_soapy_driver("PlutoSDR")
|
||||
|
||||
def has_dsd(self):
|
||||
"""
|
||||
The digital voice modes NXDN and D-Star can be decoded by the dsd project. Please note that you need the version
|
||||
|
Loading…
Reference in New Issue
Block a user