openwebrx-clone/owrx/source/airspy.py

13 lines
331 B
Python
Raw Normal View History

2019-12-27 23:33:27 +00:00
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
2019-12-27 23:33:27 +00:00
def getDriver(self):
return "airspy"