add bitpack flag for airspy

This commit is contained in:
Jakob Ketterl
2020-03-21 15:18:45 +01:00
parent 55e1a97d43
commit fbf74a1286
3 changed files with 8 additions and 2 deletions

View File

@ -5,7 +5,12 @@ from .soapy import SoapyConnectorSource
class AirspySource(SoapyConnectorSource):
def getSoapySettingsMappings(self):
mappings = super().getSoapySettingsMappings()
mappings.update({"bias_tee": "biastee"})
mappings.update(
{
"bias_tee": "biastee",
"bitpack": "bitpack",
}
)
return mappings
def getDriver(self):