2015-05-11 20:53:35 -04:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
|
2018-04-05 14:13:05 -04:00
|
|
|
#ifndef SERVER_MODE
|
2016-10-19 18:42:21 -04:00
|
|
|
#include "amdemodgui.h"
|
2018-04-05 14:13:05 -04:00
|
|
|
#endif
|
2017-11-08 02:31:00 -05:00
|
|
|
#include "amdemod.h"
|
2016-10-19 17:51:59 -04:00
|
|
|
#include "amdemodplugin.h"
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2016-10-19 17:51:59 -04:00
|
|
|
const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
|
2015-05-11 20:53:35 -04:00
|
|
|
QString("AM Demodulator"),
|
2018-04-22 04:23:11 -04:00
|
|
|
QString("3.14.4"),
|
2015-05-11 20:53:35 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2015-05-11 20:53:35 -04:00
|
|
|
true,
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2015-05-11 20:53:35 -04:00
|
|
|
};
|
|
|
|
|
2016-10-19 17:51:59 -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
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-10-19 17:51:59 -04:00
|
|
|
const PluginDescriptor& AMDemodPlugin::getPluginDescriptor() const
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2016-10-19 17:51:59 -04:00
|
|
|
void AMDemodPlugin::initPlugin(PluginAPI* pluginAPI)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register AM demodulator
|
2017-11-22 19:19:32 -05:00
|
|
|
m_pluginAPI->registerRxChannel(AMDemod::m_channelIdURI, AMDemod::m_channelId, this);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2018-04-05 14:13:05 -04:00
|
|
|
#ifdef SERVER_MODE
|
|
|
|
PluginInstanceGUI* AMDemodPlugin::createRxChannelGUI(
|
|
|
|
DeviceUISet *deviceUISet __attribute__((unused)),
|
|
|
|
BasebandSampleSink *rxChannel __attribute__((unused)))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2017-12-23 04:32:02 -05:00
|
|
|
PluginInstanceGUI* AMDemodPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2017-12-23 04:32:02 -05:00
|
|
|
return AMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
2018-04-05 14:13:05 -04:00
|
|
|
#endif
|
2017-11-08 02:31:00 -05:00
|
|
|
|
2017-12-23 03:54:42 -05:00
|
|
|
BasebandSampleSink* AMDemodPlugin::createRxChannelBS(DeviceSourceAPI *deviceAPI)
|
2017-11-08 02:31:00 -05:00
|
|
|
{
|
2017-12-23 03:54:42 -05:00
|
|
|
return new AMDemod(deviceAPI);
|
2017-11-08 02:31:00 -05:00
|
|
|
}
|
2017-12-17 17:15:42 -05:00
|
|
|
|
2017-12-23 03:54:42 -05:00
|
|
|
ChannelSinkAPI* AMDemodPlugin::createRxChannelCS(DeviceSourceAPI *deviceAPI)
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
2017-12-22 23:56:40 -05:00
|
|
|
return new AMDemod(deviceAPI);
|
2017-12-17 17:15:42 -05:00
|
|
|
}
|
|
|
|
|