2017-01-08 13:54:51 -05:00
|
|
|
#include "wfmplugin.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
|
2014-11-16 17:39:50 -05:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2015-05-14 05:08:23 -04:00
|
|
|
|
2018-05-29 05:14:24 -04:00
|
|
|
#ifndef SERVER_MODE
|
2017-01-08 13:54:51 -05:00
|
|
|
#include "wfmdemodgui.h"
|
2018-05-29 05:14:24 -04:00
|
|
|
#endif
|
2017-11-08 08:23:49 -05:00
|
|
|
#include "wfmdemod.h"
|
2019-08-01 18:29:58 -04:00
|
|
|
#include "wfmdemodwebapiadapter.h"
|
|
|
|
#include "wfmplugin.h"
|
2014-11-16 17:39:50 -05:00
|
|
|
|
|
|
|
const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
|
2019-12-15 19:03:47 -05:00
|
|
|
WFMDemod::m_channelId,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("WFM Demodulator"),
|
2020-12-20 20:30:29 -05:00
|
|
|
QStringLiteral("6.4.0"),
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
2014-11-16 17:39:50 -05:00
|
|
|
true,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
2014-11-16 17:39:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
WFMPlugin::WFMPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2014-11-16 17:39:50 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& WFMPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WFMPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register WFM demodulator
|
2017-11-22 19:19:32 -05:00
|
|
|
m_pluginAPI->registerRxChannel(WFMDemod::m_channelIdURI, WFMDemod::m_channelId, this);
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
|
|
|
|
2020-10-01 16:52:27 -04:00
|
|
|
void WFMPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
|
|
|
|
{
|
|
|
|
if (bs || cs)
|
|
|
|
{
|
|
|
|
WFMDemod *instance = new WFMDemod(deviceAPI);
|
|
|
|
|
|
|
|
if (bs) {
|
|
|
|
*bs = instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cs) {
|
|
|
|
*cs = instance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-29 05:14:24 -04:00
|
|
|
#ifdef SERVER_MODE
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI* WFMPlugin::createRxChannelGUI(
|
2019-05-24 03:37:13 -04:00
|
|
|
DeviceUISet *deviceUISet,
|
2019-08-01 15:27:31 -04:00
|
|
|
BasebandSampleSink *rxChannel) const
|
2018-05-29 05:14:24 -04:00
|
|
|
{
|
2020-11-14 05:13:32 -05:00
|
|
|
(void) deviceUISet;
|
|
|
|
(void) rxChannel;
|
|
|
|
return nullptr;
|
2018-05-29 05:14:24 -04:00
|
|
|
}
|
|
|
|
#else
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI* WFMPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
|
2014-11-16 17:39:50 -05:00
|
|
|
{
|
2017-12-23 04:32:02 -05:00
|
|
|
return WFMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2014-11-16 17:39:50 -05:00
|
|
|
}
|
2018-05-29 05:14:24 -04:00
|
|
|
#endif
|
2017-11-08 08:23:49 -05:00
|
|
|
|
2019-08-04 18:10:56 -04:00
|
|
|
ChannelWebAPIAdapter* WFMPlugin::createChannelWebAPIAdapter() const
|
2019-08-01 18:29:58 -04:00
|
|
|
{
|
|
|
|
return new WFMDemodWebAPIAdapter();
|
|
|
|
}
|