11 lines
252 B
Python
11 lines
252 B
Python
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
|
|
|
|
|
class LimeSdrSource(SoapyConnectorSource):
|
|
def getDriver(self):
|
|
return "lime"
|
|
|
|
|
|
class LimeSdrDeviceDescription(SoapyConnectorDeviceDescription):
|
|
pass
|