2017-10-31 08:24:05 +01:00
|
|
|
#include "ssbplugin.h"
|
2016-10-02 13:18:07 +02:00
|
|
|
|
2014-05-21 18:31:14 +01:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2018-05-29 10:34:00 +02:00
|
|
|
#ifndef SERVER_MODE
|
2017-10-31 08:24:05 +01:00
|
|
|
#include "ssbdemodgui.h"
|
2018-05-29 10:34:00 +02:00
|
|
|
#endif
|
2017-11-08 14:23:49 +01:00
|
|
|
#include "ssbdemod.h"
|
2019-08-02 00:29:58 +02:00
|
|
|
#include "ssbdemodwebapiadapter.h"
|
|
|
|
#include "ssbplugin.h"
|
2014-05-21 18:31:14 +01:00
|
|
|
|
|
|
|
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
|
|
|
|
QString("SSB Demodulator"),
|
2019-08-02 00:29:58 +02:00
|
|
|
QString("4.11.6"),
|
2015-09-02 01:16:40 +02:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2014-05-21 18:31:14 +01:00
|
|
|
true,
|
2015-09-02 01:16:40 +02:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2014-05-21 18:31:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
SSBPlugin::SSBPlugin(QObject* parent) :
|
2017-05-05 10:40:45 +02:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2014-05-21 18:31:14 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& SSBPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSBPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register demodulator
|
2017-11-23 01:19:32 +01:00
|
|
|
m_pluginAPI->registerRxChannel(SSBDemod::m_channelIdURI, SSBDemod::m_channelId, this);
|
2014-05-21 18:31:14 +01:00
|
|
|
}
|
|
|
|
|
2018-05-29 10:34:00 +02:00
|
|
|
#ifdef SERVER_MODE
|
|
|
|
PluginInstanceGUI* SSBPlugin::createRxChannelGUI(
|
2019-05-24 09:37:13 +02:00
|
|
|
DeviceUISet *deviceUISet,
|
2019-08-01 21:27:31 +02:00
|
|
|
BasebandSampleSink *rxChannel) const
|
2018-05-29 10:34:00 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2019-08-01 21:27:31 +02:00
|
|
|
PluginInstanceGUI* SSBPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
|
2014-05-21 18:31:14 +01:00
|
|
|
{
|
2017-12-23 10:32:02 +01:00
|
|
|
return SSBDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2014-05-21 18:31:14 +01:00
|
|
|
}
|
2018-05-29 10:34:00 +02:00
|
|
|
#endif
|
2017-11-08 14:23:49 +01:00
|
|
|
|
2019-08-01 21:27:31 +02:00
|
|
|
BasebandSampleSink* SSBPlugin::createRxChannelBS(DeviceAPI *deviceAPI) const
|
2017-11-08 14:23:49 +01:00
|
|
|
{
|
2017-12-23 09:54:42 +01:00
|
|
|
return new SSBDemod(deviceAPI);
|
2017-11-08 14:23:49 +01:00
|
|
|
}
|
2017-12-17 23:15:42 +01:00
|
|
|
|
2019-08-01 21:27:31 +02:00
|
|
|
ChannelAPI* SSBPlugin::createRxChannelCS(DeviceAPI *deviceAPI) const
|
2017-12-17 23:15:42 +01:00
|
|
|
{
|
2017-12-23 05:56:40 +01:00
|
|
|
return new SSBDemod(deviceAPI);
|
2017-12-17 23:15:42 +01:00
|
|
|
}
|
|
|
|
|
2019-08-05 00:10:56 +02:00
|
|
|
ChannelWebAPIAdapter* SSBPlugin::createChannelWebAPIAdapter() const
|
2019-08-02 00:29:58 +02:00
|
|
|
{
|
|
|
|
return new SSBDemodWebAPIAdapter();
|
|
|
|
}
|