SDRPlusPlus/readme.md

41 wiersze
1.0 KiB
Markdown
Czysty Zwykły widok Historia

2020-07-19 16:12:03 +00:00
# SDR++, The bloat-free SDR software.
2020-07-19 16:09:59 +00:00
SDR++ is a cross-platform and open source SDR software with the aim of being bloat free and simple to use.
2020-07-19 16:12:03 +00:00
## Current Features
2020-07-19 16:09:59 +00:00
* 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
2020-07-19 16:12:03 +00:00
## Comming soon
2020-07-19 16:09:59 +00:00
* Multi-VFO
* Plugins
* Digital demodulators and decoders
2020-07-19 16:12:03 +00:00
# Building on Windows
## Requirements
2020-07-19 16:09:59 +00:00
* cmake
* vcpkg (for the packages listed below)
* fftw3
* portaudio
* glfw
* glew
* PothosSDR (for libvolk and SoapySDR)
```
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
```
2020-07-19 16:12:03 +00:00
# Building on Linux
2020-07-19 16:09:59 +00:00
comming soon :)
2020-07-19 16:12:03 +00:00
# Building on OSX
2020-07-19 16:09:59 +00:00
comming soon as well :)
2020-07-19 16:12:03 +00:00
# Contributing
2020-07-19 16:09:59 +00:00
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.