Below you will find a few software defined radio examples implemented in the GNU Radio Companion. They are very simple yet functional examples I created while I was learning GNU Radio and SDR – I hope they can be useful to others too, who are learning GNU Radio and/or software defined radios.
You will find that in many of the examples tuning is done using a frequency translating FIR filter rather than changing the USRP frequency. This is because on some daughterboards (e.g. WBX) tuning is not fast enough for the user moving a GUI slider. If you are only using a daughterboard that is fast enough you can conveniently change the flow graph to tune the USRP directly and remove the frequency translating filter.
If you are looking for theoretical material for learning digital signal processing and software defined radios see Suggested Reading on the GNU Radio website. If you are an absolute newbie to SDR (like I was when I started) and haven't even got a clue of what quadrature signals are, I suggest you start with Quadrature Signals: Complex, But Not Complicated and the excellent tutorials at Complex2Real.com.
The examples are hosted on Github, see csete/gnuradio-grc-examples or create a local clone using
git clone https://github.com/csete/gnuradio-grc-examples.git
The repository contains a "uhd" branch, which uses the new Universal Hardware Driver and GNU Radio from the git repository. In order to switch to the uhd branch type:
git checkout uhd
Table of Contents
- Narrow Band FM receiver
- AM Receiver
- SSB/CW Receiver
- All-in-one AM/FM/SSB/CW Receiver
- SSB Transmitter
- Recording IQ data using dynamic file names
- NOAA APT decoder
Narrow Band FM Receiver
|
This is a simple narrow band FM receiver with two NBFM demodulators to allow switching between 5kHz and 2.5kHz deviation:
|
![]() |
|
|
|
AM Receiver
|
This is a simple AM receiver featuring a variable low pass filter and automatic gain control with fixed rate and levels:
|
![]() |
|
|
|
SSB/CW Receiver
|
This is a simple SSB/CW receiver featuring a tunable band pass filter and automatic gain control with fast/medium/slow rate:
|
![]() |
|
|
|
All-in-one AM/FM/SSB/CW Receiver
Pending
SSB Transmitter
Bandpass filtering
Recording IQ data using dynamic file names
Recording IQ data in GNU Radio companion is very easy, we simply add a filesink to the flow graph and connect it to the data we want to record. To prevent previously recorded files to be deleted when we restart the flow graph we can use the current date and time to generate a unique filename every time the GNU Radio flow graphs is started. The usage of the Python datetime module for this purpose is explained in Dynamic File Names in GNU Radio Companion.
The flow graph shown below implements a simple WFM receiver for NOAA APT downlink and a simple IQ data recorder using this datetime trick.
To play back the recorded IQ data we simply replace the USRP source in the receiver with a file source and a throttle block, see more in Playback of the Recorded IQ Data.
Example GRC files for recording and playback are also included in the GIT repository – they are called xyz_rec.grc and xyz_play.grc.
NOAA APT decoder
A simple prototype for decoding Automatic Picture Transmission (APT) from the NOAA polar orbiting weather satellites is presented in this post. Instead of WAV file input you can connect it directly to the output of a WFM receiver like the one presented in the previous section. Be sure to use the correct sample rates in the band pass filter and the first resampler! The sample rate for the decoder must be 9.6 ksps which should be clear if you read the description of how the decoder works.
Sorry there is no GRC file, but it should be very easy to reproduce from the screenshot.











