openwebrx-clone/owrx/source/airspy.py

18 lines
422 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()
2020-03-21 14:18:45 +00:00
mappings.update(
{
"bias_tee": "biastee",
"bitpack": "bitpack",
}
)
return mappings
2019-12-27 23:33:27 +00:00
def getDriver(self):
return "airspy"