11 lines
249 B
Python
11 lines
249 B
Python
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
|
|
|
|
|
class FcdppSource(SoapyConnectorSource):
|
|
def getDriver(self):
|
|
return "fcdpp"
|
|
|
|
|
|
class FcdppDeviceDescription(SoapyConnectorDeviceDescription):
|
|
pass
|