2016-04-08 12:14:50 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2016-04-21 21:53:16 -04:00
|
|
|
// Copyright (C) 2016 F4EXB //
|
2016-04-08 12:14:50 -04:00
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// 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-04-08 12:14:50 -04: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-10-31 03:24:05 -04:00
|
|
|
#include "dsddemodplugin.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2018-05-28 18:33:27 -04:00
|
|
|
#ifndef SERVER_MODE
|
2017-10-31 03:24:05 -04:00
|
|
|
#include "dsddemodgui.h"
|
2018-05-28 18:33:27 -04:00
|
|
|
#endif
|
2017-11-08 08:23:49 -05:00
|
|
|
#include "dsddemod.h"
|
2019-08-01 18:29:58 -04:00
|
|
|
#include "dsddemodwebapiadapter.h"
|
|
|
|
#include "dsddemodplugin.h"
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
|
2019-12-15 19:03:47 -05:00
|
|
|
DSDDemod::m_channelId,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("DSD Demodulator"),
|
2022-05-24 09:18:55 -04:00
|
|
|
QStringLiteral("7.2.0"),
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
2016-04-07 07:05:53 -04:00
|
|
|
true,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
2016-04-07 07:05:53 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
DSDDemodPlugin::DSDDemodPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& DSDDemodPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register DSD demodulator
|
2017-11-22 19:19:32 -05:00
|
|
|
m_pluginAPI->registerRxChannel(DSDDemod::m_channelIdURI, DSDDemod::m_channelId, this);
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|
|
|
|
|
2020-10-01 16:52:27 -04:00
|
|
|
void DSDDemodPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
|
|
|
|
{
|
|
|
|
if (bs || cs)
|
|
|
|
{
|
|
|
|
DSDDemod *instance = new DSDDemod(deviceAPI);
|
|
|
|
|
|
|
|
if (bs) {
|
|
|
|
*bs = instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cs) {
|
|
|
|
*cs = instance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-28 18:33:27 -04:00
|
|
|
#ifdef SERVER_MODE
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI* DSDDemodPlugin::createRxChannelGUI(
|
2019-05-24 03:37:13 -04:00
|
|
|
DeviceUISet *deviceUISet,
|
2019-08-01 15:27:31 -04:00
|
|
|
BasebandSampleSink *rxChannel) const
|
2018-05-28 18:33:27 -04:00
|
|
|
{
|
2020-11-14 05:13:32 -05:00
|
|
|
(void) deviceUISet;
|
|
|
|
(void) rxChannel;
|
|
|
|
return nullptr;
|
2018-05-28 18:33:27 -04:00
|
|
|
}
|
|
|
|
#else
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI* DSDDemodPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
2017-12-23 04:32:02 -05:00
|
|
|
return DSDDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|
2018-05-28 18:33:27 -04:00
|
|
|
#endif
|
2017-11-08 08:23:49 -05:00
|
|
|
|
2019-08-04 18:10:56 -04:00
|
|
|
ChannelWebAPIAdapter* DSDDemodPlugin::createChannelWebAPIAdapter() const
|
2019-08-01 18:29:58 -04:00
|
|
|
{
|
|
|
|
return new DSDDemodWebAPIAdapter();
|
|
|
|
}
|