2021-02-20 17:09:24 +00:00
|
|
|
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
2020-04-10 14:33:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UhdSource(SoapyConnectorSource):
|
|
|
|
def getDriver(self):
|
|
|
|
return "uhd"
|
2021-02-20 17:09:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UhdDeviceDescription(SoapyConnectorDeviceDescription):
|
2021-04-17 15:42:08 +00:00
|
|
|
def getName(self):
|
|
|
|
return "Ettus Research USRP device"
|