2017-10-31 03:24:05 -04:00
|
|
|
#include "ssbplugin.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
#include <device/devicesourceapi.h>
|
2014-05-21 13:31:14 -04:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2017-10-31 03:24:05 -04:00
|
|
|
#include "ssbdemodgui.h"
|
2017-11-08 08:23:49 -05:00
|
|
|
#include "ssbdemod.h"
|
2014-05-21 13:31:14 -04:00
|
|
|
|
|
|
|
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
|
|
|
|
QString("SSB Demodulator"),
|
2017-11-05 19:39:44 -05:00
|
|
|
QString("3.8.2"),
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2014-05-21 13:31:14 -04:00
|
|
|
true,
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2014-05-21 13:31:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
SSBPlugin::SSBPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2014-05-21 13:31:14 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& SSBPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSBPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register demodulator
|
2017-11-08 08:23:49 -05:00
|
|
|
m_pluginAPI->registerRxChannel(SSBDemod::m_channelID, this);
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
PluginInstanceGUI* SSBPlugin::createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
2014-05-21 13:31:14 -04:00
|
|
|
{
|
2017-11-08 08:23:49 -05:00
|
|
|
if(channelName == SSBDemod::m_channelID)
|
2016-05-16 13:37:53 -04:00
|
|
|
{
|
2017-11-08 19:03:05 -05:00
|
|
|
SSBDemodGUI* gui = SSBDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2014-05-21 13:31:14 -04:00
|
|
|
return gui;
|
|
|
|
} else {
|
2017-11-08 08:23:49 -05:00
|
|
|
return 0;
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
}
|
2017-11-08 08:23:49 -05:00
|
|
|
|
|
|
|
BasebandSampleSink* SSBPlugin::createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI)
|
|
|
|
{
|
|
|
|
if(channelName == SSBDemod::m_channelID)
|
|
|
|
{
|
|
|
|
SSBDemod* sink = new SSBDemod(deviceAPI);
|
|
|
|
return sink;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|