Skip to content

KlemenBlokar/rtl-power-fftw

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rtl_power_fftw

rtl_power_fftw is a program that obtains a power spectrum from RTL devices using the FFTW library to do FFT.

It is inspired by the program rtl_power in librtlsdr. However, the said program has several deficiencies that limit its usage in demanding environments, such as radio astronomy. I inspected rtl_power hoping to modify it and obtain better performance, but came to the conclusion that it would be an unfeasible task. Measurements of FFT performance showed that the leading library in the field of FFT - fftw - makes mincemeat of the routine used in rtl_power, even on simple processors such as raspberryPi. Therefore, the following requirements for a program to obtain power spectrum from rtlsdr devices were set out:

  • the new program should use the fftw library
  • it will (of course) use librtlsdr to interface device
  • it should process spectra in a separate thread from data acquisition, to optimize observation time (continuous sampling)
  • it should be friendly to use and adhere to the UNIX philosophy of only doing one thing, but doing it well
  • the output of the program should be easy to further use with the standard tools (like gnuplot).

The desire to have simple code to handle option parsing lead to the choice of TCLAP and therefore C++. This further meant that to implement things in a neat way, C++11 functionality snuck into the program and therefore a modern, C++11 enabled compiler is needed to compile rtl_power_fftw.

This is the current state of what the program supports:

USAGE: 

   ./rtl_power_fftw  [-B <file|->] [-b <bins in FFT spectrum>] [-c] [-d
                     <device index>] [-f <Hz | Hz:Hz>] [-g <1/10th of dB>]
                     [-n <repeats>] [-p <ppm>] [-r <samples/s>] [-s
                     <bytes>] [-T] [-t <seconds>] [--buffers <buffers>]
                     [--] [--version] [-h]


Where: 

   -B <file|->,  --baseline <file|->
     Subtract baseline, read baseline data from file or stdin.

   -b <bins in FFT spectrum>,  --bins <bins in FFT spectrum>
     Number of bins in FFT spectrum (must be even number)

   -c,  --continue
     Repeat the same measurement endlessly.

   -d <device index>,  --device <device index>
     RTL-SDR device index.

   -f <Hz | Hz:Hz>,  --freq <Hz | Hz:Hz>
     Center frequency of the receiver or frequency range to scan.

   -g <1/10th of dB>,  --gain <1/10th of dB>
     Receiver gain.

   -n <repeats>,  --repeats <repeats>
     Number of scans for averaging (incompatible with -t).

   -p <ppm>,  --ppm <ppm>
     Set custom ppm error in RTL-SDR device.

   -r <samples/s>,  --rate <samples/s>
     Sample rate of the receiver.

   -s <bytes>,  --buffer-size <bytes>
     Size of read buffers (leave it unless you know what you are doing).

   -T,  --strict-time
     End measurement when the time set with --time option is up, regardless
     of gathered samples.

   -t <seconds>,  --time <seconds>
     Integration time in seconds (incompatible with -n).

   --buffers <buffers>
     Number of read buffers (don't touch unless running out of memory).

   --,  --ignore_rest
     Ignores the rest of the labeled arguments following this flag.

   --version
     Displays version information and exits.

   -h,  --help
     Displays usage information and exits.


   Obtain power spectrum from RTL device using FFTW library.

A note about the integration time is in order: the integration time specified with the --time option is usually considered to be the effective integration time, i.e., the total number of samples acquired divided by the sample rate. If all goes well, the program will run for about this long (plus some overhead for setting up the device etc.). However, if samples are dropped for any reason (for example, if the CPU can't perform the FFTs quickly enough to cope with the actual data rate), the program will run for whatever time required to collect the needed number of samples, which can be considerably longer than the effective integration time. If you need the program to stop after a fixed time -- regardless of the actual number of samples collected -- use the --strict-time switch. Be warned, though, that only acquisition is stopped after this time and it can take several more seconds for the FFT of the remaining data to be performed (this time overhead depends on the nuber of buffers used).

Example use of rtl_power_fftw with gnuplot to draw a spectrum into a png file:

./rtl_power_fftw -f 1420405752 -n 100 -b 512 |\
    gnuplot -e "set term png; unset key; plot '-' w l" >plot.png

For quick-and-dirty live monitoring, you can do:

./rtl_power_fftw -f 1420405752 -n 100 -b 512 -c |\
    sed -u '/rtl-power-fftw/s/.*/plot "-"/;s/^$/e/' |\
    gnuplot

To compile the program, cd into the directory where you have cloned the code and do:

mkdir build
cd build
cmake ..
make

This should make the rtl_power_fftw binary in the build directory. If you copy it into a directory in your PATH, you can call it from everywhere. You can also do make install and by default it will be copied to /usr/local/bin.

##TODO:

  • ... (there's allways something, isn't it?!)

Many thanks to Andrej Lajovic for cleaning up the C++ code, implementing a better buffer handling system and relentlessly improving the program.

About

Power spectrum for RTLSDR dongles.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • C++ 95.5%
  • CMake 4.5%