2016-04-08 12:14:50 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2016-04-21 21:53:16 -04:00
|
|
|
// Copyright (C) 2016 F4EXB //
|
2016-04-08 12:14:50 -04:00
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-10-02 07:18:07 -04:00
|
|
|
#include "../../channelrx/demoddsd/dsddemodplugin.h"
|
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
#include <device/devicesourceapi.h>
|
2016-04-07 07:05:53 -04:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
#include "../../channelrx/demoddsd/dsddemodgui.h"
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
|
|
|
|
QString("DSD Demodulator"),
|
2017-05-16 12:38:39 -04:00
|
|
|
QString("3.5.0"),
|
2016-04-07 07:05:53 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
|
|
|
DSDDemodPlugin::DSDDemodPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& DSDDemodPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register DSD demodulator
|
2016-10-13 16:23:43 -04:00
|
|
|
m_pluginAPI->registerRxChannel(DSDDemodGUI::m_channelID, this);
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|
|
|
|
|
2016-10-13 17:42:08 -04:00
|
|
|
PluginGUI* DSDDemodPlugin::createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI)
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
2016-05-16 13:37:53 -04:00
|
|
|
if(channelName == DSDDemodGUI::m_channelID)
|
|
|
|
{
|
2016-05-16 04:05:09 -04:00
|
|
|
DSDDemodGUI* gui = DSDDemodGUI::create(m_pluginAPI, deviceAPI);
|
2016-04-07 07:05:53 -04:00
|
|
|
return gui;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
void DSDDemodPlugin::createInstanceDSDDemod(DeviceSourceAPI *deviceAPI)
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
2017-05-25 14:13:34 -04:00
|
|
|
DSDDemodGUI::create(m_pluginAPI, deviceAPI);
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|