openwebrx-clone/owrx/source/sdrplay.py

12 lines
306 B
Python
Raw Normal View History

from .soapy import SoapyConnectorSource
class SdrplaySource(SoapyConnectorSource):
2020-03-14 00:15:25 +00:00
def getSoapySettingsMappings(self):
mappings = super().getSoapySettingsMappings()
mappings.update({"bias_tee": "biasT_ctrl"})
return mappings
def getDriver(self):
return "sdrplay"