1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-25 04:53:27 -04:00

SDRplay plugin: removed from Windows build

This commit is contained in:
f4exb
2016-11-23 02:16:26 +01:00
parent f93d43ee24
commit 1d28429b3c
5 changed files with 4 additions and 106 deletions
+2 -6
View File
@@ -4,13 +4,9 @@
This plugin supports input from SDRplay devices. SDRplay is based on the MSi001 and MSi2500 chips from Mirics. The standard API provided by Mirics is closed source moreover it could not be implemented successfully in SDRangel. An open source API libmirisdr-2 has been written by Miroslav Slugen and later amended by Leif Asbrink SM5BSZ. This API uses a new flavour called [libmirisdr-4](https://github.com/f4exb/libmirisdr-4) in this very same Github space. It contains enhancements and bug fixes.
<b>Note to Windows users:</b>
<b>No Windows support</b>
this plugin uses the libusbK USB interface provided by [Zadig](http://zadig.akeo.ie). It will not work with any of the other drivers provided by Zadig. It is also not compatible with the drivers from Mirics so you will have to unistall (or you should not install) the Mirics software before you can use this plugin.
Use it at your own risk! If the device disconnects you will immediately get a BSOD. In Linux it is just a core dump.
Also sometimes when loading a preset the device will not work correctly. In this case just use the stop/start toggle to reset the device.
Driver is too unstable in Windows randomly stopping the appication and causing BSOD.
<h2>Build</h2>
-45
View File
@@ -1,45 +0,0 @@
#--------------------------------------------------------
#
# Pro file for Android and Windows builds with Qt Creator
#
#--------------------------------------------------------
TEMPLATE = lib
CONFIG += plugin
QT += core gui widgets multimedia opengl
TARGET = inputsdrplay
DEFINES += USE_SSE2=1
QMAKE_CXXFLAGS += -msse2
DEFINES += USE_SSE4_1=1
QMAKE_CXXFLAGS += -msse4.1
CONFIG(MINGW32):LIBMIRISDRSRC = "D:\softs\libmirisdr-4"
CONFIG(MINGW64):LIBMIRISDRSRC = "D:\softs\libmirisdr-4"
INCLUDEPATH += $$PWD
INCLUDEPATH += ../../../sdrbase
INCLUDEPATH += $$LIBMIRISDRSRC/include
CONFIG(Release):build_subdir = release
CONFIG(Debug):build_subdir = debug
SOURCES += sdrplaygui.cpp\
sdrplayinput.cpp\
sdrplayplugin.cpp\
sdrplaysettings.cpp\
sdrplaythread.cpp
HEADERS += sdrplaygui.h\
sdrplayinput.h\
sdrplayplugin.h\
sdrplaysettings.h\
sdrplaythread.h
FORMS += sdrplaygui.ui
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
LIBS += -L../../../libmirisdr/$${build_subdir} -llibmirisdr
RESOURCES = ../../../sdrbase/resources/res.qrc