openwebrx-clone/owrx/source/airspy.py

42 lines
1.2 KiB
Python
Raw Normal View History

2021-02-20 17:09:24 +00:00
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
2021-02-20 18:20:31 +00:00
from owrx.form import Input, CheckboxInput
from owrx.form.device import BiasTeeInput
from typing import List
class AirspySource(SoapyConnectorSource):
def getSoapySettingsMappings(self):
mappings = super().getSoapySettingsMappings()
2020-03-21 14:18:45 +00:00
mappings.update(
{
"bias_tee": "biastee",
"bitpack": "bitpack",
}
)
return mappings
2019-12-27 23:33:27 +00:00
def getDriver(self):
return "airspy"
2021-02-20 17:09:24 +00:00
class AirspyDeviceDescription(SoapyConnectorDeviceDescription):
def getInputs(self) -> List[Input]:
return super().getInputs() + [
BiasTeeInput(),
CheckboxInput(
"bitpack",
"Enable bit-packing",
infotext="Packs two 12-bit samples into 3 bytes."
+ " Lowers USB bandwidth consumption, increases CPU load",
),
]
def getDeviceOptionalKeys(self):
return super().getDeviceOptionalKeys() + ["bias_tee", "bitpack"]
2021-02-23 17:32:23 +00:00
def getProfileOptionalKeys(self):
return super().getProfileOptionalKeys() + ["bias_tee"]
2021-02-23 16:36:16 +00:00
def getGainStages(self):
return ["LNA", "MIX", "VGA"]