SDR++, The bloat-free SDR software
 
 
 
 
 
Go to file
Ryzerth bd545feb2c changes to the build system 2020-12-22 14:50:26 +01:00
airspyhf_source changes to the build system 2020-12-22 14:50:26 +01:00
audio_sink Bugfixed + performance improvements to the waterfall 2020-12-12 05:34:58 +01:00
core changes to the build system 2020-12-22 14:50:26 +01:00
file_source Bugfixed + performance improvements to the waterfall 2020-12-12 05:34:58 +01:00
plutosdr_source changes to the build system 2020-12-22 14:50:26 +01:00
radio changes to the build system 2020-12-22 14:50:26 +01:00
recorder changes to the build system 2020-12-22 14:50:26 +01:00
root changes to the build system 2020-12-22 14:50:26 +01:00
root_dev changes to the build system 2020-12-22 14:50:26 +01:00
rtl_tcp_source Bugfixed + performance improvements to the waterfall 2020-12-12 05:34:58 +01:00
rx888_source Bugfixed + performance improvements to the waterfall 2020-12-12 05:34:58 +01:00
sdrpp_0.2.5_beta_airspyhf changes to the build system 2020-12-22 14:50:26 +01:00
soapy_source changes to the build system 2020-12-22 14:50:26 +01:00
spyserver_source changes to the build system 2020-12-22 14:50:26 +01:00
src changes to the build system 2020-12-22 14:50:26 +01:00
win32 Push before merge 2020-09-06 15:39:09 +02:00
.gitignore changes to the build system 2020-12-22 14:50:26 +01:00
CMakeLists.txt changes to the build system 2020-12-22 14:50:26 +01:00
create_root.bat changes to the build system 2020-12-22 14:50:26 +01:00
create_root.sh changes to the build system 2020-12-22 14:50:26 +01:00
license added license 2020-07-20 00:43:36 +02:00
readme.md added more info to the readme 2020-12-14 01:07:30 +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.

Features

  • Wide hardware support (both through SoapySDR and dedicated modules)
  • SIMD accelerated DSP
  • Cross-platform (Windows, Linux, OSX and BSD)
  • Full waterfall update when possible. Makes browsing signals easier and more pleasant

Comming soon

  • Digital demodulators and decoders
  • Light theme (I know you weirdos exist lol)
  • Waterfall color scheme editor
  • Switchable fft size
  • other small customisation options

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

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

Replace <N> by the number of threads available for building (eg. 4)

mkdir build
cd build
cmake ..
make -j<N>

Modify root_dev/config.json

You'll then need to set the right paths for the modules. This is optional. If you don't plan on modifying the modules, you can simply copy over their binaries (from build/<module name>/<module name>.so) to the root_dev/modules/ directory.

Here is an example of module paths in root_dev/config.json

"modules": [
    "./radio/radio.so",
    "./recorder/recorder.so",
    "./soapy/soapy.so",
    "./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

Configuring

You'll then need to set the right paths for the modules. This is optional. If you don't plan on modifying the modules, you can simply copy over their binaries (from build/<module name>/<module name>.so) to the root_dev/modules/ directory.

Here is an example of module paths in root_dev/config.json

"modules": [
    "./radio/radio.so",
    "./recorder/recorder.so",
    "./soapy/soapy.so",
    "./rtl_tcp_source/rtl_tcp_source.so"
]

Building on OpenBSD

Install requirements

NOTE: These instructions are outdated

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