SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
bfmplugin.cpp
Go to the documentation of this file.
1 // Copyright (C) 2015 F4EXB //
3 // written by Edouard Griffiths //
4 // //
5 // This program is free software; you can redistribute it and/or modify //
6 // it under the terms of the GNU General Public License as published by //
7 // the Free Software Foundation as version 3 of the License, or //
8 // (at your option) any later version. //
9 // //
10 // This program is distributed in the hope that it will be useful, //
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
13 // GNU General Public License V3 for more details. //
14 // //
15 // You should have received a copy of the GNU General Public License //
16 // along with this program. If not, see <http://www.gnu.org/licenses/>. //
18 
19 #include "bfmplugin.h"
20 
21 #include <QtPlugin>
22 #include "plugin/pluginapi.h"
23 
24 #ifndef SERVER_MODE
25 #include "bfmdemodgui.h"
26 #endif
27 #include "bfmdemod.h"
28 
30  QString("Broadcast FM Demodulator"),
31  QString("4.5.2"),
32  QString("(c) Edouard Griffiths, F4EXB"),
33  QString("https://github.com/f4exb/sdrangel"),
34  true,
35  QString("https://github.com/f4exb/sdrangel")
36 };
37 
38 BFMPlugin::BFMPlugin(QObject* parent) :
39  QObject(parent),
40  m_pluginAPI(0)
41 {
42 }
43 
45 {
46  return m_pluginDescriptor;
47 }
48 
50 {
51  m_pluginAPI = pluginAPI;
52 
53  // register BFM demodulator
55 }
56 
57 #ifdef SERVER_MODE
59  DeviceUISet *deviceUISet,
60  BasebandSampleSink *rxChannel)
61 {
62  return 0;
63 }
64 #else
66 {
67  return BFMDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
68 }
69 #endif
70 
72 {
73  return new BFMDemod(deviceAPI);
74 }
75 
77 {
78  return new BFMDemod(deviceAPI);
79 }
80 
const PluginDescriptor & getPluginDescriptor() const
Definition: bfmplugin.cpp:44
PluginAPI * m_pluginAPI
Definition: bfmplugin.h:45
static const QString m_channelIdURI
Definition: bfmdemod.h:206
virtual PluginInstanceGUI * createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
Definition: bfmplugin.cpp:65
static const QString m_channelId
Definition: bfmdemod.h:207
void registerRxChannel(const QString &channelIdURI, const QString &channelId, PluginInterface *plugin)
Definition: pluginapi.cpp:4
virtual BasebandSampleSink * createRxChannelBS(DeviceAPI *deviceAPI)
Definition: bfmplugin.cpp:71
virtual ChannelAPI * createRxChannelCS(DeviceAPI *deviceAPI)
Definition: bfmplugin.cpp:76
BFMPlugin(QObject *parent=0)
Definition: bfmplugin.cpp:38
static BFMDemodGUI * create(PluginAPI *pluginAPI, DeviceUISet *deviceAPI, BasebandSampleSink *rxChannel)
Definition: bfmdemodgui.cpp:48
static const PluginDescriptor m_pluginDescriptor
Definition: bfmplugin.h:43
void initPlugin(PluginAPI *pluginAPI)
Definition: bfmplugin.cpp:49