2015-09-02 21:57:54 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
#include <QAction>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
2015-09-03 22:10:38 -04:00
|
|
|
#include "fcdproplusplugin.h"
|
|
|
|
#include "fcdproplusgui.h"
|
2015-09-02 21:57:54 -04:00
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
const PluginDescriptor FCDProPlusPlugin::m_pluginDescriptor = {
|
|
|
|
QString("FunCube Pro+ Input"),
|
2015-09-02 21:57:54 -04:00
|
|
|
QString("---"),
|
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
FCDProPlusPlugin::FCDProPlusPlugin(QObject* parent) :
|
2015-09-02 21:57:54 -04:00
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
const PluginDescriptor& FCDProPlusPlugin::getPluginDescriptor() const
|
2015-09-02 21:57:54 -04:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
void FCDProPlusPlugin::initPlugin(PluginAPI* pluginAPI)
|
2015-09-02 21:57:54 -04:00
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
m_pluginAPI->registerSampleSource("org.osmocom.sdr.samplesource.fcdproplus", this);
|
2015-09-02 21:57:54 -04:00
|
|
|
}
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
PluginInterface::SampleSourceDevices FCDProPlusPlugin::enumSampleSources()
|
2015-09-02 21:57:54 -04:00
|
|
|
{
|
|
|
|
SampleSourceDevices result;
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
QString displayedName(QString("FunCube Pro+ #1"));
|
2015-09-02 21:57:54 -04:00
|
|
|
SimpleSerializer s(1);
|
|
|
|
s.writeS32(1, 0);
|
2015-09-03 22:10:38 -04:00
|
|
|
result.append(SampleSourceDevice(displayedName, "org.osmocom.sdr.samplesource.fcdproplus", s.final()));
|
2015-09-02 21:57:54 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-09-03 22:10:38 -04:00
|
|
|
PluginGUI* FCDProPlusPlugin::createSampleSourcePluginGUI(const QString& sourceName, const QByteArray& address)
|
2015-09-02 21:57:54 -04:00
|
|
|
{
|
2015-09-03 22:10:38 -04:00
|
|
|
if(sourceName == "org.osmocom.sdr.samplesource.fcdproplus")
|
2015-09-03 02:50:07 -04:00
|
|
|
{
|
2015-09-03 22:10:38 -04:00
|
|
|
FCDProPlusGui* gui = new FCDProPlusGui(m_pluginAPI);
|
2015-09-02 21:57:54 -04:00
|
|
|
m_pluginAPI->setInputGUI(gui);
|
|
|
|
return gui;
|
2015-09-03 02:50:07 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-09-02 21:57:54 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|