18 lines
422 B
Python
Raw Normal View History

2019-12-28 00:33:27 +01:00
from owrx.command import Flag
from .soapy import SoapyConnectorSource
class AirspySource(SoapyConnectorSource):
def getSoapySettingsMappings(self):
mappings = super().getSoapySettingsMappings()
2020-03-21 15:18:45 +01:00
mappings.update(
{
"bias_tee": "biastee",
"bitpack": "bitpack",
}
)
return mappings
2019-12-28 00:33:27 +01:00
def getDriver(self):
return "airspy"