2014-11-16 17:39:50 -05:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2015-05-14 05:08:23 -04:00
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
#include "wfmdemodgui.h"
|
2015-05-14 05:08:23 -04:00
|
|
|
#include "wfmplugin.h"
|
2014-11-16 17:39:50 -05:00
|
|
|
|
|
|
|
const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
|
|
|
|
QString("WFM Demodulator"),
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("---"),
|
2015-05-14 05:08:23 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2014-11-16 17:39:50 -05:00
|
|
|
true,
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2014-11-16 17:39:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
WFMPlugin::WFMPlugin(QObject* parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& WFMPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WFMPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register WFM demodulator
|
2016-05-16 13:37:53 -04:00
|
|
|
m_pluginAPI->registerChannel(WFMDemodGUI::m_channelID, this);
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
|
|
|
|
2016-05-16 04:05:09 -04:00
|
|
|
PluginGUI* WFMPlugin::createChannel(const QString& channelName, DeviceAPI *deviceAPI)
|
2014-11-16 17:39:50 -05:00
|
|
|
{
|
2016-05-16 13:37:53 -04:00
|
|
|
if(channelName == WFMDemodGUI::m_channelID)
|
|
|
|
{
|
2016-05-16 04:05:09 -04:00
|
|
|
WFMDemodGUI* gui = WFMDemodGUI::create(m_pluginAPI, deviceAPI);
|
2016-05-16 13:37:53 -04:00
|
|
|
// deviceAPI->registerChannelInstance("de.maintech.sdrangelove.channel.wfm", gui);
|
2016-05-16 04:05:09 -04:00
|
|
|
// m_pluginAPI->addChannelRollup(gui);
|
2014-11-16 17:39:50 -05:00
|
|
|
return gui;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-16 04:05:09 -04:00
|
|
|
void WFMPlugin::createInstanceWFM(DeviceAPI *deviceAPI)
|
2014-11-16 17:39:50 -05:00
|
|
|
{
|
2016-05-16 04:05:09 -04:00
|
|
|
WFMDemodGUI* gui = WFMDemodGUI::create(m_pluginAPI, deviceAPI);
|
2016-05-16 13:37:53 -04:00
|
|
|
// deviceAPI->registerChannelInstance("de.maintech.sdrangelove.channel.wfm", gui);
|
2016-05-16 04:05:09 -04:00
|
|
|
// m_pluginAPI->addChannelRollup(gui);
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|