20 lines
622 B
Python
20 lines
622 B
Python
from .soapy import SoapyConnectorSource
|
|
from owrx.command import Option
|
|
|
|
|
|
class RtlSdrSoapySource(SoapyConnectorSource):
|
|
def getCommandMapper(self):
|
|
return super().getCommandMapper().setMappings({"direct_sampling": Option("-t direct_samp").setSpacer("=")})
|
|
|
|
def getDriver(self):
|
|
return "rtlsdr"
|
|
|
|
def getEventNames(self):
|
|
return super().getEventNames() + ["direct_sampling"]
|
|
|
|
def onPropertyChange(self, prop, value):
|
|
if prop == "direct_sampling":
|
|
prop = "settings"
|
|
value = "direct_samp={0}".format(value)
|
|
super().onPropertyChange(prop, value)
|