mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
77 lines
1.6 KiB
C++
77 lines
1.6 KiB
C++
#include <QtPlugin>
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "nfmplugin.h"
|
|
#ifndef SERVER_MODE
|
|
#include "nfmdemodgui.h"
|
|
#endif
|
|
#include "nfmdemod.h"
|
|
#include "nfmdemodwebapiadapter.h"
|
|
#include "nfmplugin.h"
|
|
|
|
const PluginDescriptor NFMPlugin::m_pluginDescriptor = {
|
|
NFMDemod::m_channelId,
|
|
QStringLiteral("NFM Demodulator"),
|
|
QStringLiteral("6.20.2"),
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
|
true,
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
|
};
|
|
|
|
NFMPlugin::NFMPlugin(QObject* parent) :
|
|
QObject(parent),
|
|
m_pluginAPI(0)
|
|
{
|
|
}
|
|
|
|
const PluginDescriptor& NFMPlugin::getPluginDescriptor() const
|
|
{
|
|
return m_pluginDescriptor;
|
|
}
|
|
|
|
void NFMPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
{
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
// register NFM demodulator
|
|
m_pluginAPI->registerRxChannel(NFMDemod::m_channelIdURI, NFMDemod::m_channelId, this);
|
|
}
|
|
|
|
void NFMPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
|
|
{
|
|
if (bs || cs)
|
|
{
|
|
NFMDemod *instance = new NFMDemod(deviceAPI);
|
|
|
|
if (bs) {
|
|
*bs = instance;
|
|
}
|
|
|
|
if (cs) {
|
|
*cs = instance;
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifdef SERVER_MODE
|
|
ChannelGUI* NFMPlugin::createRxChannelGUI(
|
|
DeviceUISet *deviceUISet,
|
|
BasebandSampleSink *rxChannel) const
|
|
{
|
|
(void) deviceUISet;
|
|
(void) rxChannel;
|
|
return nullptr;
|
|
}
|
|
#else
|
|
ChannelGUI* NFMPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
|
|
{
|
|
return NFMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
|
}
|
|
#endif
|
|
|
|
ChannelWebAPIAdapter* NFMPlugin::createChannelWebAPIAdapter() const
|
|
{
|
|
return new NFMDemodWebAPIAdapter();
|
|
}
|