diff --git a/Readme.md b/Readme.md index 3bf79a689..31ae7382a 100644 --- a/Readme.md +++ b/Readme.md @@ -40,7 +40,6 @@ From version 3 transmission or signal generation is supported for BladeRF, HackR - [BladeRF output plugin](https://github.com/f4exb/sdrangel/tree/dev/plugins/samplesink/bladerfoutput) limited support in Windows - [HackRF output plugin](https://github.com/f4exb/sdrangel/tree/dev/plugins/samplesink/hackrfoutput) - [LimeSDR output plugin](https://github.com/f4exb/sdrangel/tree/dev/plugins/samplesink/limesdroutput) - - [PlutoSDR output plugin](https://github.com/f4exb/sdrangel/tree/dev/plugins/samplesink/plutosdroutput) - [File output or file sink plugin](https://github.com/f4exb/sdrangel/tree/dev/plugins/samplesink/filesink) - [Remote device via Network with SDRdaemon](https://github.com/f4exb/sdrangel/tree/dev/plugins/samplesink/sdrdaemonsink) Linux only @@ -122,7 +121,7 @@ Then add the following defines on `cmake` command line:

PlutoSDR

-PlutoSDR is supported with the libiio interface. This library should be installed in your system for proper build of the software and operation support. Add `libiio-dev` to the list of dependencies to install. Be aware that version 0.10 is needed and is not available yet in all distributions. You may have to compile it from source instead. +PlutoSDR (Rx only) is supported with the libiio interface. This library should be installed in your system for proper build of the software and operation support. Add `libiio-dev` to the list of dependencies to install. Be aware that version 0.10 is needed and is not available yet in all distributions. You may have to compile it from source instead. If you use your own location for libiio install directory you need to specify library and include locations. Example with `/opt/install/libiio` with the following defines on `cmake` command line: `-DLIBIIO_INCLUDE_DIR=/opt/install/libiio/include -DLIBIIO_LIBRARY=/opt/install/libiio/lib/libiio.so` diff --git a/plugins/samplesink/CMakeLists.txt b/plugins/samplesink/CMakeLists.txt index cba3d1b80..0f77eb583 100644 --- a/plugins/samplesink/CMakeLists.txt +++ b/plugins/samplesink/CMakeLists.txt @@ -17,10 +17,10 @@ if(LIBUSB_FOUND AND LIMESUITE_FOUND) add_subdirectory(limesdroutput) endif(LIBUSB_FOUND AND LIMESUITE_FOUND) -find_package(LibIIO) -if(LIBUSB_FOUND AND LIBIIO_FOUND) - add_subdirectory(plutosdroutput) -endif(LIBUSB_FOUND AND LIBIIO_FOUND) +#find_package(LibIIO) +#if(LIBUSB_FOUND AND LIBIIO_FOUND) +# add_subdirectory(plutosdroutput) +#endif(LIBUSB_FOUND AND LIBIIO_FOUND) find_package(CM256cc) find_package(LibNANOMSG) @@ -35,7 +35,7 @@ if (BUILD_DEBIAN) if (LIBNANOMSG_FOUND) add_subdirectory(sdrdaemonsink) endif (LIBNANOMSG_FOUND) - add_subdirectory(plutosdroutput) +# add_subdirectory(plutosdroutput) endif (BUILD_DEBIAN) add_subdirectory(filesink) diff --git a/sdrangel.windows.pro b/sdrangel.windows.pro index 5234dcc9f..efbf7d159 100644 --- a/sdrangel.windows.pro +++ b/sdrangel.windows.pro @@ -36,7 +36,7 @@ SUBDIRS += plugins/samplesink/filesink SUBDIRS += plugins/samplesink/bladerfoutput SUBDIRS += plugins/samplesink/hackrfoutput SUBDIRS += plugins/samplesink/limesdroutput -SUBDIRS += plugins/samplesink/plutosdroutput +#SUBDIRS += plugins/samplesink/plutosdroutput SUBDIRS += plugins/channelrx/chanalyzer SUBDIRS += plugins/channelrx/chanalyzerng SUBDIRS += plugins/channelrx/demodam