2019-02-24 18:13:57 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2019 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. //
|
2019-02-24 18:13:57 -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"
|
|
|
|
#ifndef SERVER_MODE
|
|
|
|
#include "freedvdemodgui.h"
|
|
|
|
#endif
|
|
|
|
#include "freedvdemod.h"
|
|
|
|
#include "freedvplugin.h"
|
|
|
|
|
|
|
|
const PluginDescriptor FreeDVPlugin::m_pluginDescriptor = {
|
|
|
|
QString("FreeDV Demodulator"),
|
2019-04-17 11:34:02 -04:00
|
|
|
QString("4.5.5"),
|
2019-02-24 18:13:57 -05:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
|
|
|
FreeDVPlugin::FreeDVPlugin(QObject* parent) :
|
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& FreeDVPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeDVPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register demodulator
|
|
|
|
m_pluginAPI->registerRxChannel(FreeDVDemod::m_channelIdURI, FreeDVDemod::m_channelId, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SERVER_MODE
|
|
|
|
PluginInstanceGUI* FreeDVPlugin::createRxChannelGUI(
|
|
|
|
DeviceUISet *deviceUISet __attribute__((unused)),
|
|
|
|
BasebandSampleSink *rxChannel __attribute__((unused)))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
PluginInstanceGUI* FreeDVPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
|
|
|
{
|
|
|
|
return FreeDVDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-05-08 16:11:53 -04:00
|
|
|
BasebandSampleSink* FreeDVPlugin::createRxChannelBS(DeviceAPI *deviceAPI)
|
2019-02-24 18:13:57 -05:00
|
|
|
{
|
|
|
|
return new FreeDVDemod(deviceAPI);
|
|
|
|
}
|
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
ChannelAPI* FreeDVPlugin::createRxChannelCS(DeviceAPI *deviceAPI)
|
2019-02-24 18:13:57 -05:00
|
|
|
{
|
|
|
|
return new FreeDVDemod(deviceAPI);
|
|
|
|
}
|
|
|
|
|