mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
68 lines
1.5 KiB
C++
68 lines
1.5 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 = {
|
|
QString("NFM Demodulator"),
|
|
QString("4.12.2"),
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
true,
|
|
QString("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);
|
|
}
|
|
|
|
#ifdef SERVER_MODE
|
|
PluginInstanceGUI* NFMPlugin::createRxChannelGUI(
|
|
DeviceUISet *deviceUISet,
|
|
BasebandSampleSink *rxChannel) const
|
|
{
|
|
return 0;
|
|
}
|
|
#else
|
|
PluginInstanceGUI* NFMPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
|
|
{
|
|
return NFMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
|
}
|
|
#endif
|
|
|
|
BasebandSampleSink* NFMPlugin::createRxChannelBS(DeviceAPI *deviceAPI) const
|
|
{
|
|
return new NFMDemod(deviceAPI);
|
|
}
|
|
|
|
ChannelAPI* NFMPlugin::createRxChannelCS(DeviceAPI *deviceAPI) const
|
|
{
|
|
return new NFMDemod(deviceAPI);
|
|
}
|
|
|
|
ChannelWebAPIAdapter* NFMPlugin::createChannelWebAPIAdapter() const
|
|
{
|
|
return new NFMDemodWebAPIAdapter();
|
|
}
|