openwebrx-clone/owrx/source/airspy.py
2020-03-14 01:13:23 +01:00

13 lines
331 B
Python

from owrx.command import Flag
from .soapy import SoapyConnectorSource
class AirspySource(SoapyConnectorSource):
def getSoapySettingsMappings(self):
mappings = super().getSoapySettingsMappings()
mappings.update({"bias_tee": "biastee"})
return mappings
def getDriver(self):
return "airspy"