Added more instructions.

This commit is contained in:
Marat Fayzullin 2024-03-02 19:59:42 -05:00
parent d86551ec2b
commit 8043cff286
1 changed files with 7 additions and 4 deletions

View File

@ -466,7 +466,10 @@ class FeatureDetector(object):
def has_airspy_rx(self): def has_airspy_rx(self):
""" """
In order to use an Airspy Receiver, you need to install the airspy_rx receiver software. The [Airspy Host](https://github.com/airspy/airspyone_host)
software is required to interface with the Airspy devices.
You can find instructions on how to build and install it
[here](https://github.com/airspy/airspyone_host).
""" """
return self.command_is_runnable("airspy_rx --help") return self.command_is_runnable("airspy_rx --help")
@ -573,9 +576,9 @@ class FeatureDetector(object):
def has_rockprog(self): def has_rockprog(self):
""" """
The "rockprog" executable is required to send commands to your FiFiSDR. It needs to be installed separately. The `rockprog` executable is required to interface with FiFiSDR
devices. You can download and install it from
You can find instructions and downloads [here](https://o28.sischa.net/fifisdr/trac/wiki/De%3Arockprog). [here](https://o28.sischa.net/fifisdr/trac/wiki/De%3Arockprog).
""" """
return self.command_is_runnable("rockprog") return self.command_is_runnable("rockprog")