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"),
|
2018-03-27 05:32:39 -04:00
|
|
|
QString("3.14.0"),
|
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-22 19:19:32 -05:00
|
|
|
m_pluginAPI->registerRxChannel(SSBDemod::m_channelIdURI, SSBDemod::m_channelId, this);
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
|
|
|
|
2017-12-23 04:32:02 -05:00
|
|
|
PluginInstanceGUI* SSBPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
2014-05-21 13:31:14 -04:00
|
|
|
{
|
2017-12-23 04:32:02 -05:00
|
|
|
return SSBDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2014-05-21 13:31:14 -04:00
|
|
|
}
|
2017-11-08 08:23:49 -05:00
|
|
|
|
2017-12-23 03:54:42 -05:00
|
|
|
BasebandSampleSink* SSBPlugin::createRxChannelBS(DeviceSourceAPI *deviceAPI)
|
2017-11-08 08:23:49 -05:00
|
|
|
{
|
2017-12-23 03:54:42 -05:00
|
|
|
return new SSBDemod(deviceAPI);
|
2017-11-08 08:23:49 -05:00
|
|
|
}
|
2017-12-17 17:15:42 -05:00
|
|
|
|
2017-12-23 03:54:42 -05:00
|
|
|
ChannelSinkAPI* SSBPlugin::createRxChannelCS(DeviceSourceAPI *deviceAPI)
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
2017-12-22 23:56:40 -05:00
|
|
|
return new SSBDemod(deviceAPI);
|
2017-12-17 17:15:42 -05:00
|
|
|
}
|
|
|
|
|