mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
17 lines
458 B
Python
17 lines
458 B
Python
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
|
from owrx.form.input.validator import Range
|
|
from typing import List
|
|
|
|
|
|
class LimeSdrSource(SoapyConnectorSource):
|
|
def getDriver(self):
|
|
return "lime"
|
|
|
|
|
|
class LimeSdrDeviceDescription(SoapyConnectorDeviceDescription):
|
|
def getName(self):
|
|
return "LimeSDR device"
|
|
|
|
def getSampleRateRanges(self) -> List[Range]:
|
|
return [Range(100000, 65000000)]
|