2021-02-20 17:09:24 +00:00
|
|
|
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
2019-12-21 19:58:28 +00:00
|
|
|
|
|
|
|
|
2019-12-27 23:38:36 +00:00
|
|
|
class AirspyhfSource(SoapyConnectorSource):
|
2019-12-21 19:58:28 +00:00
|
|
|
def getDriver(self):
|
|
|
|
return "airspyhf"
|
2021-02-20 17:09:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
class AirspyhfDeviceDescription(SoapyConnectorDeviceDescription):
|
2021-04-17 15:42:08 +00:00
|
|
|
def getName(self):
|
|
|
|
return "Airspy HF+ or Discovery"
|
2022-06-09 18:25:29 +00:00
|
|
|
|
|
|
|
def supportsPpm(self):
|
|
|
|
# not currently supported by the SoapySDR module.
|
|
|
|
return False
|