GNU Radio

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found.

GNU Radio
325px
Original author(s) Eric Blossom
Developer(s) GNU Project
Tom Rondeau
Johnathan Corgan
Stable release 3.7.9.2 (April 12, 2016; 8 years ago (2016-04-12)[1]) [±]
Development status Active
Written in C++, Python
Operating system Cross-platform
Available in English
Type Radio
License GNU General Public License
Website Official website

GNU Radio is a free software development toolkit that provides signal processing blocks to implement software-defined radios and signal processing systems. It can be used with external RF hardware to create software-defined radios, or without hardware in a simulation-like environment. It is widely used in hobbyist, academic, and commercial environments to support both wireless communications research and real-world radio systems.

Overview

File:GNU Radio Qt GUI Plots Screenshot.png
GNU Radio plotting demodulated radio samples.

The GNU Radio software provides the framework and tools to build and run software radio or just general signal processing applications. The GNU Radio applications themselves are generally known as 'flowgraphs', which are a series of signal processing blocks connected together, thus describing a data flow. As with all software-defined radio systems, reconfigurability is a key feature. Instead of using different radios designed for specific but disparate purposes, a single, general-purpose, radio can be used as the radio front-end, and the signal-processing software (here, GNU Radio), handles the processing specific to the radio application.

These flowgraphs can be written in either C++ or the Python programming language. The GNU Radio infrastructure is written entirely in C++, and many of the user tools are written in Python.

GNU Radio is a signal processing package, which is distributed under the terms of the GNU General Public License (GPL). All of the code is copyright of the Free Software Foundation.

History

First published in 2001, GNU Radio is an official GNU Project. Philanthropist John Gilmore initiated GNU Radio with the funding of $320,000 (US) to Eric Blossom for code creation and project management duties.

GNU Radio began as a fork of the Pspectra code that was developed by the SpectrumWare project at the Massachusetts Institute of Technology (MIT). In 2004 a complete rewrite of the GNU Radio was completed, so today GNU Radio no longer has any original Pspectra code. Also of note is that the Pspectra codebase has been used as the foundation of the commercial Vanu Software Radio.

Matt Ettus joined the project as one of the first developers, and created the Universal Software Radio Peripheral (USRP) to provide a hardware platform for use with the GNU Radio software.

In September 2010, Eric Blossom stepped down as project manager and was replaced by Tom Rondeau.[2]

Early in the project, the core developers began holding semi-annual Hackfests. In 2011, the GNU Radio project began holding a yearly conference, called "GRCon", which generally has a Hackfest on the last day of the conference.

Software

GNU Radio Companion

File:GNU Radio Companion Screenshot.png
Editing a GNU Radio flowgraph in the GNU Radio Companion

The GNU Radio Companion is a graphical UI used to develop GNU Radio applications.[3] This is the front-end to the GNU Radio libraries for signal processing. GRC was developed by Josh Blum during his studies at Johns Hopkins University (2006-2007), then distributed as free software for the October 2009 Hackfest. Starting with the 3.2.0 release, GRC was officially bundled with the GNU Radio software distribution.

GRC is effectively a Python code-generation tool. When a flowgraph is 'compiled' in GRC, it generates Python code that creates the desired GUI windows and widgets, and creates and connects the blocks in the flowgraph.

GRC currently supports GUI creation with WxWidgets or the Qt toolkit.

Plotting and displays

GNU Radio provides many common plotting and data visualization data sinks, including FFT displays, symbol constellation diagrams, and scope displays. These are commonly used both for debugging radio applications and as the user-interface to a final application.

PyBOMBS

Many users create 'out-of-tree modules' for use with GNU Radio. To manage these, and the dependencies required to run GNU Radio, the organization created the PyBOMBS (Python Build Overlay Managed Bundle System) project.[4]

See also

References

External links