mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
#include "../../channelrx/demodlora/loraplugin.h"
|
|
|
|
#include <QtPlugin>
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "../../channelrx/demodlora/lorademodgui.h"
|
|
|
|
const PluginDescriptor LoRaPlugin::m_pluginDescriptor = {
|
|
QString("LoRa Demodulator"),
|
|
QString("2.0.0"),
|
|
QString("(c) 2015 John Greb"),
|
|
QString("http://www.maintech.de"),
|
|
true,
|
|
QString("github.com/hexameron/rtl-sdrangelove")
|
|
};
|
|
|
|
LoRaPlugin::LoRaPlugin(QObject* parent) :
|
|
QObject(parent),
|
|
m_pluginAPI(0)
|
|
{
|
|
}
|
|
|
|
const PluginDescriptor& LoRaPlugin::getPluginDescriptor() const
|
|
{
|
|
return m_pluginDescriptor;
|
|
}
|
|
|
|
void LoRaPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
{
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
// register demodulator
|
|
m_pluginAPI->registerRxChannel(LoRaDemodGUI::m_channelID, this);
|
|
}
|
|
|
|
PluginGUI* LoRaPlugin::createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI)
|
|
{
|
|
if(channelName == LoRaDemodGUI::m_channelID)
|
|
{
|
|
LoRaDemodGUI* gui = LoRaDemodGUI::create(m_pluginAPI, deviceAPI);
|
|
return gui;
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
void LoRaPlugin::createInstanceLoRa(DeviceSourceAPI *deviceAPI)
|
|
{
|
|
LoRaDemodGUI::create(m_pluginAPI, deviceAPI);
|
|
}
|