11 lines
243 B
Python
11 lines
243 B
Python
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
|
|
|
|
|
class UhdSource(SoapyConnectorSource):
|
|
def getDriver(self):
|
|
return "uhd"
|
|
|
|
|
|
class UhdDeviceDescription(SoapyConnectorDeviceDescription):
|
|
pass
|