Quantcast
Channel: Applications – rtl-sdr.com
Viewing all articles
Browse latest Browse all 1205

RTL-SDR Tutorial: Listening to TETRA Radio Channels

$
0
0

TETRA is a trunked radio communications system that stands for “Terrestrial Trunked Radio”. It is used heavily in many parts of the world, except for the USA. Recently, a software program called Tetra Live Monitor (telive) was released on GitHub. This software can be used along with the (patched) Osmo-TETRA software to monitor and listen to unencrypted TETRA communications.

Below we show a tutorial on how to listen to TETRA communications using a RTL-SDR RTL2832U software defined radio. This tutorial is based heavily on the telive_doc.pdf file that is written by the author of telive and included in the telive git download. Please refer to that pdf file for further details on how the software works. We have modified their tutorial slightly to fix some small errors and make it a little easier to understand. As this code is still under heavy development if you have trouble please check their PDF file for modifications to the procedures.

Decoding and Listening to TETRA Tutorial

Most of this tutorial is performed in Linux and we assume that you have some decent Linux experience. We also assume you have some experience with the RTL-SDR dongle and have a decent antenna capable of picking up TETRA signals in your area. If you don’t have a RTL-SDR dongle yet see our Buy RTL-SDR dongles page.

First, we will need to find some TETRA signals. The easiest way to do this is to open SDR# or another program like GQRX and look for them. TETRA signals are continuously broadcasting with a bandwidth of around 25 kHz. There may be several TETRA signals grouped in close proximity to one another. See the example images below.

A Zoomed in TETRA Signal
A Zoomed in TETRA Signal
TETRA Signals Zoomed Out
A Grouping of TETRA Signals Zoomed Out

An example audio clip of a TETRA signal recorded in NFM mode is shown below.

Once you have found some TETRA signals, record their frequencies. Now close SDR#, or whatever software you were using and boot into Linux. In this tutorial we use a 32-bit Ubuntu 14.04 virtual machine running on VMWare Player as our Linux system. Some of the commands may vary if you are using a different system.

Install Prerequisites

sudo apt-get install vorbis-tools
sudo apt-get install sox
sudo apt-get install alsa-utils
sudo apt-get install libncurses-dev

Install GNU Radio 3.6

The TETRA decoding software requires installation of the older GNU Radio 3.6 (latest version is 3.7). The easist way to do this is to run Marcus Leech’s install script with the -o flag, to indicate you want the old version:

cd ~
wget http://www.sbrac.org/files/build-gnuradio && chmod a+x ./build-gnuradio && ./build-gnuradio -o

This script will run for a few hours and should install GNURadio 3.6 and all the drivers required to run the RTL-SDR on Linux. Note that if you already have GNU Radio 3.7 installed, we recommend installing 3.6 on a fresh Linux install as the two versions many conflict.

Install libosmocore-sq5bpf

cd ~
git clone https://github.com/sq5bpf/libosmocore-sq5bpf
cd libosmocore-sq5bpf
autoreconf -i
./configure
make
sudo make install
sudo ldconfig

Install osmo-teta-sq5bpf

cd ~
git clone https://github.com/sq5bpf/osmo-tetra-sq5bpf
cd osmo-tetra-sq5bpf
cd src
make

Install telive

git clone https://github.com/sq5bpf/telive
cd telive
make
sudo mkdir /tetra
sudo chown YOURUSER.YOURGROUP /tetra
sh install.sh

Where YOURUSER.YOURGROUP should be replaced with the username and group that you are currently logged in to on your Linux system. In most cases it can just be YOURUSER.YOURUSER. Run ls -l in your home directory to see what username and group your files are using.

Install the TETRA Codecs

Note that if you are running a 64-Bit Linux version you will need to set your system to use a 32-bit compiler. The Appendix of the telive_doc.pdf file shows how to do this.

  1. Go to http://pda.etsi.org/
  2. In the top right enter as a search term “en 300 395-2″ and click the button to select Search Standards.
  3. Start the search.
  4. Find the search result labelled as REN/TETRA-05059.
  5. Click on the winzip icon (looks like a white page with a yellow file cabinet on it) to the right of the result to download en_30039502v010301p0.zip.
  6. Move this zip file into ~/osmo-tetra-sq5bpf/etsi_codec-patches.
  7. In a terminal browse to ~/osmo-tetra-sq5bpf/etsi_codec-patches.
  8. Unzip the file, making sure to unzip with lower case letters by using the following unzip command.
    unzip -L en_30039502v010301p0.zip
  9. Use the codec.diff file to patch the codec files you just unzipped by typing the following patch command.
    patch -p1 -N -E < codec.diff
  10. Open the c-code folder.
    cd c-code
  11. Run make to compile the codecs.
    make
  12. Copy the compiled files cdecoder and sdecoder to /tetra/bin by typing the following, or just by copy and pasting them in the Linux GUI.
    cp cdecoder sdecoder /tetra/bin

Running the Software

  1. Open a terminal window and browse to ~/osmo-tetra-sq5bpf/src and run ./receiver1 1.
    cd ~/osmo-tetra-sq5bpf/src
    ./receiver1 1
  2. Open a second terminal window or tab and open a specially sized xterm window using the following.
    /usr/bin/xterm -font fixed -bg black -fg white -geometry 203x60
  3. In the xterm window, browse to ~/telive and run ./rxx.
    cd ~/telive
    ./rxx
  4. Open another terminal window or tab and browse to /tetra/bin and run ./tetrad.
    cd /tetra/bin
    ./tetrad
  5. Open another terminal window or tab and open GNU Radio Companion by typing the following.
    gnuradio-companion
  6. In GNU Radio open the telive_1ch.grc file which is found in ~/telive/gnuradio-companion.
  7. On the left of the GNU Radio flowgraph, double click on the variable labeled Center Freq and change the frequency to the frequency of your TETRA signal that you found earlier subtracted by 500 kHz. E.G. If your TETRA signal was found at 858.562 MHz, you’d type your center frequency as 858.062 MHz. This is because the default offset value is set to 500 kHz.
  8. Double click the variable labelled ppm and input your dongles particular PPM correction value.
  9. Execute the flowgraph by clicking on the cog icon on GNU Radio Companion toolbar.

At this point you should confirm that you see a strong rectangular TETRA signal in the FFT window that pops up. If you do, switch back to your first terminal window where you ran ./receiver1 1. You should confirm that you see system data scrolling by. If there is no data scrolling by, try adjust the gain and PPM offset in the FFT window.

If data is scrolling and the system it not encrypted you should start to hear voice audio. If a system is encrypted, the terminal window with the system data will show Air encryption: 1. If you want to log all voice communications you can by pressing “shift+R” in the telive window. This will log .ogg audio files to /tetra/out. You can also enable a text log with “l”.

If you happen to close the GNU Radio FFT window and want to run the program again, you will need to restart the ./receiver1 1 program.

To see how to monitor two or four TETRA channels simultaneously, refer to the telive_doc.pdf PDF file.

TETRA Decoding Windows
TETRA Decoding Windows

If you enjoyed this tutorial you may like our ebook available on Amazon.

The Hobbyist’s Guide to the RTL-SDR: Really Cheap Software Defined radio.

The post RTL-SDR Tutorial: Listening to TETRA Radio Channels appeared first on rtl-sdr.com.


Viewing all articles
Browse latest Browse all 1205

Trending Articles