openwebrx-clone/owrx/source/sdrplay.py
2020-03-14 01:15:25 +01:00

12 lines
306 B
Python

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"