2020-01-10 20:43:28 +01:00
|
|
|
from .soapy import SoapyConnectorSource
|
2020-01-10 20:50:56 +01:00
|
|
|
from owrx.command import Option
|
2020-01-10 20:43:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
class RtlSdrSoapySource(SoapyConnectorSource):
|
2020-01-10 20:50:56 +01:00
|
|
|
def getCommandMapper(self):
|
|
|
|
return super().getCommandMapper().setMappings({"direct_sampling": Option("-t direct_samp").setSpacer("=")})
|
|
|
|
|
2020-01-10 20:43:28 +01:00
|
|
|
def getDriver(self):
|
|
|
|
return "rtlsdr"
|
2020-01-10 20:50:56 +01:00
|
|
|
|
|
|
|
def getEventNames(self):
|
|
|
|
return super().getEventNames() + ["direct_sampling"]
|