11 lines
261 B
Python
11 lines
261 B
Python
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
|
|
|
|
|
class RedPitayaSource(SoapyConnectorSource):
|
|
def getDriver(self):
|
|
return "redpitaya"
|
|
|
|
|
|
class RedPitayaDeviceDescription(SoapyConnectorDeviceDescription):
|
|
pass
|