mirror of
https://github.com/miek/inspectrum.git
synced 2026-03-03 06:54:17 +01:00
74aaa9665acccddfac2e592df37906d1890eb840
inspectrum
inspectrum is a tool for analysing captured signals, primarily from software-defined radio receivers.
Try it
Prerequisites
- boost >=1.35
- gnuradio 3.7.x
- qt5
- fftw 3.x
- cmake
- pkg-config
Building on Debian-based distros
sudo apt-get install qt5-default libfftw3-dev cmake pkg-config
mkdir build
cd build
cmake ..
make
sudo make install
Building on OSX - Homebrew
brew install qt5 fftw cmake pkg-config
mkdir build
cd build
CMAKE_PREFIX_PATH=$(brew --prefix qt5)/lib/cmake cmake ..
make install
Building on OSX - Macports
sudo port install fftw-3-single cmake pkgconfig qt5
mkdir build
cd build
cmake ..
make
sudo make install
Run
./inspectrum
Currently inspectrum can only read files with interleaved (complex) 32-bit floats, such as those produced by GNURadio or osmocom_fft.
Features
- Spectrogram with zoom/pan
- Large (multi-gigabyte) file support
Goals
- Be fast and light
- Make as many settings as possible work in realtime. I want this to be a useful tool for visually learning about DSP by tweaking around with things like FFT settings, filter widths or clock synchronisation.
- Support large files - as large as possible, but at least several GBs.
- Future features: filtering, demodulation, clock sync. Probably based on GNURadio.
Contact
- #inspectrum on freenode IRC
Languages
C++
96.3%
CMake
3.7%
