sdrangel/plugins/channelrx/demodam/amdemodplugin.cpp

68 lines
1.6 KiB
C++
Raw Normal View History

2015-05-11 20:53:35 -04:00
#include <QtPlugin>
#include <QAction>
2015-05-11 20:53:35 -04:00
#include "plugin/pluginapi.h"
2016-10-19 18:42:21 -04:00
#include "amdemodgui.h"
#include "amdemod.h"
#include "amdemodplugin.h"
2015-05-11 20:53:35 -04:00
const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
2015-05-11 20:53:35 -04:00
QString("AM Demodulator"),
2017-12-17 18:06:01 -05:00
QString("3.9.0"),
2015-05-11 20:53:35 -04:00
QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"),
2015-05-11 20:53:35 -04:00
true,
QString("https://github.com/f4exb/sdrangel")
2015-05-11 20:53:35 -04:00
};
AMDemodPlugin::AMDemodPlugin(QObject* parent) :
2017-05-05 04:40:45 -04:00
QObject(parent),
m_pluginAPI(0)
2015-05-11 20:53:35 -04:00
{
}
const PluginDescriptor& AMDemodPlugin::getPluginDescriptor() const
2015-05-11 20:53:35 -04:00
{
return m_pluginDescriptor;
}
void AMDemodPlugin::initPlugin(PluginAPI* pluginAPI)
2015-05-11 20:53:35 -04:00
{
m_pluginAPI = pluginAPI;
// register AM demodulator
m_pluginAPI->registerRxChannel(AMDemod::m_channelIdURI, AMDemod::m_channelId, this);
2015-05-11 20:53:35 -04:00
}
PluginInstanceGUI* AMDemodPlugin::createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
2015-05-11 20:53:35 -04:00
{
if(channelName == AMDemod::m_channelIdURI)
{
AMDemodGUI* gui = AMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
return gui;
2015-05-11 20:53:35 -04:00
} else {
return 0;
2015-05-11 20:53:35 -04:00
}
}
BasebandSampleSink* AMDemodPlugin::createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI)
{
if(channelName == AMDemod::m_channelIdURI)
{
AMDemod* sink = new AMDemod(deviceAPI);
return sink;
} else {
return 0;
}
}
2017-12-17 17:15:42 -05:00
void AMDemodPlugin::createRxChannel(ChannelSinkAPI **channelSinkAPI, const QString& channelName, DeviceSourceAPI *deviceAPI)
{
if(channelName == AMDemod::m_channelIdURI) {
*channelSinkAPI = new AMDemod(deviceAPI);
} else {
*channelSinkAPI = 0;
}
}