SDR++, The bloat-free SDR software
 
 
 
 
 
Go to file
Ryzerth eac0a7a13f Fixed FIR bug with the pluto module 2020-11-26 19:25:58 +01:00
audio_sink More work on the sink interface 2020-11-22 18:26:48 +01:00
core More work on the sink interface 2020-11-22 18:26:48 +01:00
demo Save before changes 2020-10-01 01:21:15 +02:00
file_source More work on the sink interface 2020-11-22 18:26:48 +01:00
plutosdr_source Fixed FIR bug with the pluto module 2020-11-26 19:25:58 +01:00
radio Partial RX888 source module 2020-11-12 21:23:18 +01:00
recorder added rx888 2020-11-12 00:53:38 +01:00
root new fixes 2020-10-20 00:32:17 +02:00
root_dev Fixed FIR bug with the pluto module 2020-11-26 19:25:58 +01:00
rtl_tcp_source new dsp 2020-11-02 03:57:44 +01:00
rx888_source More work on the sink interface 2020-11-22 18:26:48 +01:00
soapy Fixes 2020-11-03 19:22:53 +01:00
source_demo New module system 2020-10-01 13:46:12 +02:00
src new modole system 2020-09-19 12:48:34 +02:00
win32 Push before merge 2020-09-06 15:39:09 +02:00
.gitignore Use pkg for every module, and link them static 2020-10-23 10:37:10 +08:00
CMakeLists.txt plutosdr support 2020-11-25 21:52:37 +01:00
license added license 2020-07-20 00:43:36 +02:00
prepare_root.bat new fixes 2020-10-20 00:32:17 +02:00
prepare_root.sh fixed OpenBSD build 4 2020-10-24 17:34:18 +02:00
readme.md Fixed FIR bug with the pluto module 2020-11-26 19:25:58 +01:00

readme.md

SDR++, The bloat-free SDR software.

Screenshot SDR++ is a cross-platform and open source SDR software with the aim of being bloat free and simple to use.

Current Features

  • Uses SoapySDR for wide hardware support
  • Hardware accelerated graphics (OpenGL + ImGui)
  • SIMD accelerated DSP (parts of the DSP are still missing)
  • Cross-platform
  • Full waterfall update when possible. Makes browsing signals easier and more pleasant

Comming soon

  • Multi-VFO
  • Plugins
  • Digital demodulators and decoders
  • Quick replay (replay last n seconds, cool if you missed a short signal)

Small things to add

  • Switchable bandwidth for demodulators
  • Switchable audio output device and sample rate
  • Recording
  • Light theme (I know you weirdos exist lol)
  • Waterfall color scheme editor
  • Switchable fft size
  • Bias-T enable/disable
  • other small customisation options
  • Save waterfall and demod settings between sessions
  • "Hide sidebar" option
  • Input filter bandwidth option

Known issues (please check before reporting)

  • Random crashes (yikes)
  • Gains aren't stepped
  • The default gains might contain a bogus value before being adjusted
  • Clicks in the audio
  • In some cases, it takes a long time to select a device (RTL-SDR in perticular)
  • Min and Max buttons can get unachievable values (eg. min > max or min = max);

Building on Windows

Requirements

  • cmake
  • vcpkg (for the packages listed below)
  • fftw3
  • portaudio
  • glfw
  • glew
  • PothosSDR (for libvolk and SoapySDR)

The build

mkdir build
cd build
cmake .. "-DCMAKE_TOOLCHAIN_FILE=C:/Users/Alex/vcpkg/scripts/buildsystems/vcpkg.cmake" -G "Visual Studio 15 2017 Win64"
cmake --build . --config Release

Copying over needed directories

The last step of the build process is copying the bandplans and res directories to the output directory. If you followed the steps above, it should be build/Release.

Building on Linux

install requirements

On Debian/Ubtuntu system: apt install libglew-dev libglfw3-dev libfftw3-dev libvolk1-dev portaudio19-dev libsoapysdr-dev gcc

The build

mkdir build
cd build
cmake ..
make

Modify root_dev/modules_list.json

If the content is different than the following, change it.

{
    "Radio": "./radio/radio.so",
    "Recorder": "./recorder/recorder.so",
    "Soapy": "./soapy/soapy.so",
    "RTLTCPSource": "./rtl_tcp_source/rtl_tcp_source.so"
}

Building on OSX

Install requirements

brew tap pothosware/homebrew-pothos
brew install volk glew glfw fftw portaudio
brew install soapysdr

You can install additional soapy device support based on your hardware.

The build

mkdir build
cd build
cmake ..
cmake --build . --config Release

Building on OpenBSD

Install requirements

pkg_add fftw3-float glew glfw portaudio-svn

# install volk and SoapySDR manually

The build

mkdir build
cd build
cmake --clang ..
make
cd ..
./prepare_root.sh
cp -Rf root root_dev # if are in dev
mv root/modules ./

Run SDRPP with build/sdrpp.

Modify root_dev/modules_list.json If the content is different than the following, change it.

{
    "Radio": "./radio/radio.dylib",
    "Recorder": "./recorder/recorder.dylib",
    "Soapy": "./soapy/soapy.dylib",
    "RTLTCPSource": "./rtl_tcp_source/rtl_tcp_source.dylib"
}

Contributing

Feel free to issue pull request and report bugs via the github issues. I will soon publish a contributing.md listing the code style to use.

Credits

Patrons

Contributors

Libaries used