add biastee setting for sdrplay, too

This commit is contained in:
Jakob Ketterl 2020-03-14 01:15:25 +01:00
parent 4deb4c781e
commit e37e2f4540

View File

@ -2,5 +2,10 @@ from .soapy import SoapyConnectorSource
class SdrplaySource(SoapyConnectorSource):
def getSoapySettingsMappings(self):
mappings = super().getSoapySettingsMappings()
mappings.update({"bias_tee": "biasT_ctrl"})
return mappings
def getDriver(self):
return "sdrplay"