Skip to content

Tetra demodulator plugin for SDR++ (output can be fed to tetra-rx from osmo-tetra)

License

Notifications You must be signed in to change notification settings

m4ver1cks/sdrpp-tetra-demodulator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sdrpp-tetra-demodulator

Tetra demodulator plugin for SDR++

Designed to fully demodulate and decode TETRA downlink signals

Thanks to osmo-tetra authors for their great library

Signal chain:

VFO->Demodulator(AGC->FLL->RRC->Maximum Likelihood(y[n]y'[n]) timing recovery->Costas loop)->Constellation diagram->Symbol extractor->Differential decoder->Bits unpacker->Osmo-tetra decoder->Sink

Building:

  1. If you have arch-like system, just install package sdrpp-tetra-demodulator-git with all dependencies

  2. Install SDR++ core headers to /usr/include/sdrpp_core/, if not installed. Refer to sdrpp-headers-git AUR package PKGBUILD on instructions how to do that

    OR if you don't want to use my header system, add -DSDRPP_MODULE_CMAKE="/path/to/sdrpp_build_dir/sdrpp_module.cmake" to cmake launch arguments

    Download and patch ETSI TETRA codec(in this repository):

    cd src/decoder/etsi_codec-patches
    ./download_and_patch.sh
    

    Install libosmocore via package manager

  3. Build:

    mkdir build
    cd build
    cmake ..
    make
    sudo make install
    
  4. Enable new module by adding

    "Tetra demodulator": {
      "enabled": true,
      "module": "tetra_demodulator"
    }
    

    to config.json, or add it via Module manager

Usage:

  1. Find TETRA frequency you want to receive

  2. Move demodulator VFO to the center of it

  3. After some time, it will sync to the carrier and you'll likely see 4 constellation points(sync requires at least ~20dB of signal)

  4. If the channel is unencrypted, just wait for the voice activity and listen to it!

About

Tetra demodulator plugin for SDR++ (output can be fed to tetra-rx from osmo-tetra)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 75.8%
  • C++ 23.4%
  • Other 0.8%