sdrangel/plugins/channelrx/demodssb/ssbplugin.cpp

98 lines
3.4 KiB
C++
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
// written by Christian Daniel //
// Copyright (C) 2014 John Greb <hexameron> //
// Copyright (C) 2015-2023 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
// Copyright (C) 2019 Davide Gerhard <rainbow@irh.it> //
// Copyright (C) 2020 Kacper Michajłow <kasper93@gmail.com> //
// //
// 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 //
// (at your option) any later version. //
// //
// 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 "ssbplugin.h"
2014-05-21 13:31:14 -04:00
#include <QtPlugin>
#include "plugin/pluginapi.h"
2018-05-29 04:34:00 -04:00
#ifndef SERVER_MODE
#include "ssbdemodgui.h"
2018-05-29 04:34:00 -04:00
#endif
#include "ssbdemod.h"
#include "ssbdemodwebapiadapter.h"
#include "ssbplugin.h"
2014-05-21 13:31:14 -04:00
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
SSBDemod::m_channelId,
2020-11-21 09:38:04 -05:00
QStringLiteral("SSB Demodulator"),
2024-04-14 05:41:00 -04:00
QStringLiteral("7.20.0"),
2020-11-21 09:38:04 -05:00
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
2014-05-21 13:31:14 -04:00
true,
2020-11-21 09:38:04 -05:00
QStringLiteral("https://github.com/f4exb/sdrangel")
2014-05-21 13:31:14 -04:00
};
SSBPlugin::SSBPlugin(QObject* parent) :
2017-05-05 04:40:45 -04:00
QObject(parent),
m_pluginAPI(0)
2014-05-21 13:31:14 -04:00
{
}
const PluginDescriptor& SSBPlugin::getPluginDescriptor() const
{
return m_pluginDescriptor;
}
void SSBPlugin::initPlugin(PluginAPI* pluginAPI)
{
m_pluginAPI = pluginAPI;
// register demodulator
m_pluginAPI->registerRxChannel(SSBDemod::m_channelIdURI, SSBDemod::m_channelId, this);
2014-05-21 13:31:14 -04:00
}
void SSBPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
{
if (bs || cs)
{
SSBDemod *instance = new SSBDemod(deviceAPI);
if (bs) {
*bs = instance;
}
if (cs) {
*cs = instance;
}
}
}
2018-05-29 04:34:00 -04:00
#ifdef SERVER_MODE
ChannelGUI* SSBPlugin::createRxChannelGUI(
DeviceUISet *deviceUISet,
BasebandSampleSink *rxChannel) const
2018-05-29 04:34:00 -04:00
{
2020-11-14 05:13:32 -05:00
(void) deviceUISet;
(void) rxChannel;
return nullptr;
2018-05-29 04:34:00 -04:00
}
#else
ChannelGUI* SSBPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
2014-05-21 13:31:14 -04:00
{
return SSBDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
2014-05-21 13:31:14 -04:00
}
2018-05-29 04:34:00 -04:00
#endif
ChannelWebAPIAdapter* SSBPlugin::createChannelWebAPIAdapter() const
{
return new SSBDemodWebAPIAdapter();
}