├── .gitignore ├── CMakeLists.txt ├── Changelog.txt ├── FindLibSDRplay.cmake ├── LICENSE.txt ├── README.md ├── Registration.cpp ├── Settings.cpp ├── SoapySDRPlay.hpp └── Streaming.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *~ 3 | *.swp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/Changelog.txt -------------------------------------------------------------------------------- /FindLibSDRplay.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/FindLibSDRplay.cmake -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/README.md -------------------------------------------------------------------------------- /Registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/Registration.cpp -------------------------------------------------------------------------------- /Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/Settings.cpp -------------------------------------------------------------------------------- /SoapySDRPlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/SoapySDRPlay.hpp -------------------------------------------------------------------------------- /Streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothosware/SoapySDRPlay2/HEAD/Streaming.cpp --------------------------------------------------------------------------------