kopia lustrzana https://github.com/f4exb/sdrangel
52 wiersze
1.1 KiB
C++
52 wiersze
1.1 KiB
C++
#include "wfmplugin.h"
|
|
|
|
#include <QtPlugin>
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "wfmdemodgui.h"
|
|
#include "wfmdemod.h"
|
|
|
|
const PluginDescriptor WFMPlugin::m_pluginDescriptor = {
|
|
QString("WFM Demodulator"),
|
|
QString("3.14.0"),
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
true,
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
};
|
|
|
|
WFMPlugin::WFMPlugin(QObject* parent) :
|
|
QObject(parent),
|
|
m_pluginAPI(0)
|
|
{
|
|
}
|
|
|
|
const PluginDescriptor& WFMPlugin::getPluginDescriptor() const
|
|
{
|
|
return m_pluginDescriptor;
|
|
}
|
|
|
|
void WFMPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
{
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
// register WFM demodulator
|
|
m_pluginAPI->registerRxChannel(WFMDemod::m_channelIdURI, WFMDemod::m_channelId, this);
|
|
}
|
|
|
|
PluginInstanceGUI* WFMPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
|
{
|
|
return WFMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
|
}
|
|
|
|
BasebandSampleSink* WFMPlugin::createRxChannelBS(DeviceSourceAPI *deviceAPI)
|
|
{
|
|
return new WFMDemod(deviceAPI);
|
|
}
|
|
|
|
ChannelSinkAPI* WFMPlugin::createRxChannelCS(DeviceSourceAPI *deviceAPI)
|
|
{
|
|
return new WFMDemod(deviceAPI);
|
|
}
|
|
|