2016-12-17 01:58:40 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2016-12-17 01:58:40 -05:00
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
|
2018-04-08 18:54:25 -04:00
|
|
|
#ifndef SERVER_MODE
|
2016-12-17 01:58:40 -05:00
|
|
|
#include "wfmmodgui.h"
|
2018-04-08 18:54:25 -04:00
|
|
|
#endif
|
2017-11-08 11:09:25 -05:00
|
|
|
#include "wfmmod.h"
|
2016-12-17 01:58:40 -05:00
|
|
|
#include "wfmmodplugin.h"
|
|
|
|
|
|
|
|
const PluginDescriptor WFMModPlugin::m_pluginDescriptor = {
|
|
|
|
QString("WFM Modulator"),
|
2019-03-25 08:57:59 -04:00
|
|
|
QString("4.5.2"),
|
2016-12-17 01:58:40 -05:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
|
|
|
WFMModPlugin::WFMModPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2016-12-17 01:58:40 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& WFMModPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WFMModPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register AM modulator
|
2017-11-22 19:19:32 -05:00
|
|
|
m_pluginAPI->registerTxChannel(WFMMod::m_channelIdURI, WFMMod::m_channelId, this);
|
2016-12-17 01:58:40 -05:00
|
|
|
}
|
|
|
|
|
2018-04-08 18:54:25 -04:00
|
|
|
#ifdef SERVER_MODE
|
|
|
|
PluginInstanceGUI* WFMModPlugin::createTxChannelGUI(
|
|
|
|
DeviceUISet *deviceUISet __attribute__((unused)),
|
|
|
|
BasebandSampleSource *txChannel __attribute__((unused)))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2017-12-23 04:38:45 -05:00
|
|
|
PluginInstanceGUI* WFMModPlugin::createTxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSource *txChannel)
|
2016-12-17 01:58:40 -05:00
|
|
|
{
|
2017-12-23 04:38:45 -05:00
|
|
|
return WFMModGUI::create(m_pluginAPI, deviceUISet, txChannel);
|
2016-12-17 01:58:40 -05:00
|
|
|
}
|
2018-04-08 18:54:25 -04:00
|
|
|
#endif
|
2017-11-08 11:09:25 -05:00
|
|
|
|
2019-05-08 16:11:53 -04:00
|
|
|
BasebandSampleSource* WFMModPlugin::createTxChannelBS(DeviceAPI *deviceAPI)
|
2017-11-08 11:09:25 -05:00
|
|
|
{
|
2017-12-23 04:16:27 -05:00
|
|
|
return new WFMMod(deviceAPI);
|
2017-11-08 11:09:25 -05:00
|
|
|
}
|
2017-12-17 17:15:42 -05:00
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
ChannelAPI* WFMModPlugin::createTxChannelCS(DeviceAPI *deviceAPI)
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
2017-12-22 23:56:40 -05:00
|
|
|
return new WFMMod(deviceAPI);
|
2017-12-17 17:15:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|