mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-06 06:55:10 +00:00
disable PPM input for devices that don't support it
This commit is contained in:
parent
fe7f2317de
commit
35ad4712bb
7 changed files with 39 additions and 2 deletions
|
|
@ -18,6 +18,11 @@ class HackrfDeviceDescription(SoapyConnectorDeviceDescription):
|
|||
def getName(self):
|
||||
return "HackRF"
|
||||
|
||||
def supportsPpm(self):
|
||||
# not implemented by the SoapySDR module.
|
||||
# see discussion here: https://groups.io/g/openwebrx/topic/78339109
|
||||
return False
|
||||
|
||||
def getInputs(self) -> List[Input]:
|
||||
return super().getInputs() + [BiasTeeInput()]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue