2025-09-12 11:32:49 -04:00
|
|
|
.. _blade:
|
|
|
|
|
2025-09-12 14:51:45 -04:00
|
|
|
BladeRF
|
|
|
|
=======
|
2025-09-12 11:32:49 -04:00
|
|
|
|
|
|
|
The BladeRF is a versatile software-defined radio (SDR) platform developed by Nuand. It is designed for a wide
|
|
|
|
range of applications, from wireless communication research to field deployments. BladeRF devices are known
|
|
|
|
for their high performance, flexibility, and extensive open-source support, making them suitable for both
|
|
|
|
hobbyists and professionals. The BladeRF is based on the Analog Devices AD9361 RF transceiver, which provides
|
|
|
|
wide frequency coverage and high bandwidth.
|
|
|
|
|
|
|
|
Supported Models
|
|
|
|
----------------
|
2025-09-12 14:51:45 -04:00
|
|
|
|
|
|
|
- **BladeRF 2.0 Micro xA4:** A compact model with a 49 kLE FPGA, ideal for portable applications.
|
|
|
|
- **BladeRF 2.0 Micro xA9:** A higher-end version of the Micro with a 115 kLE FPGA, offering more processing power in a small form factor.
|
2025-09-12 11:32:49 -04:00
|
|
|
|
|
|
|
Key Features
|
|
|
|
------------
|
|
|
|
|
2025-09-12 14:51:45 -04:00
|
|
|
- **Frequency Range:** Typically from 47 MHz to 6 GHz, covering a wide range of wireless communication bands.
|
|
|
|
- **Bandwidth:** Up to 56 MHz, allowing for wideband signal processing.
|
|
|
|
- **FPGA:** Integrated FPGA (varies by model) for real-time processing and custom logic development.
|
|
|
|
- **Connectivity:** USB 3.0 interface for high-speed data transfer, with options for GPIO, SPI, and other I/O.
|
|
|
|
|
|
|
|
Hackability
|
|
|
|
-----------
|
|
|
|
|
|
|
|
- **Expansion:** The BladeRF features GPIO, expansion headers, and add-on boards, allowing users to extend the
|
|
|
|
functionality of the device for specific applications, such as additional RF front ends.
|
|
|
|
- **Frequency and Bandwidth Modification:** Advanced users can modify the BladeRF's settings and firmware to
|
|
|
|
explore different frequency bands and optimize the bandwidth for their specific use cases.
|
2025-09-12 11:32:49 -04:00
|
|
|
|
|
|
|
Limitations
|
|
|
|
-----------
|
|
|
|
|
2025-09-12 14:51:45 -04:00
|
|
|
- The complexity of FPGA development may present a steep learning curve for users unfamiliar with hardware
|
|
|
|
description languages (HDL).
|
|
|
|
- Bandwidth is capped at 56 MHz, which might not be sufficient for ultra-wideband applications.
|
|
|
|
- USB 3.0 connectivity is required for optimal performance; using USB 2.0 will significantly limit data
|
|
|
|
transfer rates.
|
2025-09-12 11:32:49 -04:00
|
|
|
|
2025-09-29 16:24:18 -04:00
|
|
|
Set up instructions (Linux, Radioconda)
|
2025-09-12 14:51:45 -04:00
|
|
|
---------------------------
|
2025-09-12 11:32:49 -04:00
|
|
|
|
2025-10-02 15:19:29 -04:00
|
|
|
Step 1: Activate your Radioconda environment.
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
conda activate <your-env-name>
|
|
|
|
|
|
|
|
Step 2: Install the base dependencies and drivers ('Easy method')
|
2025-09-12 11:32:49 -04:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
sudo add-apt-repository ppa:nuandllc/bladerf
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install bladerf
|
|
|
|
sudo apt-get install libbladerf-dev
|
|
|
|
sudo apt-get install bladerf-fpga-hostedxa4 # Necessary for installation of bladeRF 2.0 Micro A4.
|
|
|
|
|
2025-09-29 16:24:18 -04:00
|
|
|
Step 3: Install a udev rule by creating a link into your radioconda installation.
|
2025-09-12 11:32:49 -04:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2025-09-29 16:24:18 -04:00
|
|
|
sudo ln -s $CONDA_PREFIX/lib/udev/rules.d/88-nuand-bladerf1.rules /etc/udev/rules.d/88-radioconda-nuand-bladerf1.rules
|
|
|
|
sudo ln -s $CONDA_PREFIX/lib/udev/rules.d/88-nuand-bladerf2.rules /etc/udev/rules.d/88-radioconda-nuand-bladerf2.rules
|
|
|
|
sudo ln -s $CONDA_PREFIX/lib/udev/rules.d/88-nuand-bootloader.rules /etc/udev/rules.d/88-radioconda-nuand-bootloader.rules
|
|
|
|
sudo udevadm control --reload
|
|
|
|
sudo udevadm trigger
|
2025-09-12 14:51:45 -04:00
|
|
|
|
|
|
|
Further Information
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
- `Official Website <https://www.nuand.com/>`_
|
2025-09-29 16:24:18 -04:00
|
|
|
- `BladeRF GitHub Repository <https://github.com/Nuand/bladeRF>`_
|
|
|
|
- `Radioconda Github Repository <https://github.com/radioconda/radioconda-installer?tab=readme-ov-file#bladerf>`
|