2015-01-10 19:12:58 -05:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
|
2017-10-07 20:26:47 -04:00
|
|
|
#include "loraplugin.h"
|
|
|
|
#include "lorademodgui.h"
|
2017-11-08 08:23:49 -05:00
|
|
|
#include "lorademod.h"
|
2015-01-10 19:12:58 -05:00
|
|
|
|
|
|
|
const PluginDescriptor LoRaPlugin::m_pluginDescriptor = {
|
|
|
|
QString("LoRa Demodulator"),
|
2017-11-22 19:19:32 -05:00
|
|
|
QString("3.8.5"),
|
2015-01-10 19:12:58 -05:00
|
|
|
QString("(c) 2015 John Greb"),
|
|
|
|
QString("http://www.maintech.de"),
|
|
|
|
true,
|
|
|
|
QString("github.com/hexameron/rtl-sdrangelove")
|
|
|
|
};
|
|
|
|
|
|
|
|
LoRaPlugin::LoRaPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2015-01-10 19:12:58 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& LoRaPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoRaPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register demodulator
|
2017-11-22 19:19:32 -05:00
|
|
|
m_pluginAPI->registerRxChannel(LoRaDemod::m_channelIdURI, LoRaDemod::m_channelId, this);
|
2015-01-10 19:12:58 -05:00
|
|
|
}
|
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
PluginInstanceGUI* LoRaPlugin::createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
2015-01-10 19:12:58 -05:00
|
|
|
{
|
2017-11-22 19:19:32 -05:00
|
|
|
if(channelName == LoRaDemod::m_channelIdURI)
|
2016-05-16 13:37:53 -04:00
|
|
|
{
|
2017-11-08 19:03:05 -05:00
|
|
|
LoRaDemodGUI* gui = LoRaDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2015-01-10 19:12:58 -05:00
|
|
|
return gui;
|
|
|
|
} else {
|
2017-11-08 08:23:49 -05:00
|
|
|
return 0;
|
2015-01-10 19:12:58 -05:00
|
|
|
}
|
|
|
|
}
|
2017-11-08 08:23:49 -05:00
|
|
|
|
|
|
|
BasebandSampleSink* LoRaPlugin::createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI)
|
|
|
|
{
|
2017-11-22 19:19:32 -05:00
|
|
|
if(channelName == LoRaDemod::m_channelIdURI)
|
2017-11-08 08:23:49 -05:00
|
|
|
{
|
|
|
|
LoRaDemod* sink = new LoRaDemod(deviceAPI);
|
|
|
|
return sink;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2017-12-17 17:15:42 -05:00
|
|
|
|
|
|
|
void LoRaPlugin::createRxChannel(ChannelSinkAPI **channelSinkAPI, const QString& channelName, DeviceSourceAPI *deviceAPI)
|
|
|
|
{
|
|
|
|
if(channelName == LoRaDemod::m_channelIdURI) {
|
|
|
|
*channelSinkAPI = new LoRaDemod(deviceAPI);
|
|
|
|
} else {
|
|
|
|
*channelSinkAPI = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|