2015-01-11 00:12:58 +00:00
|
|
|
#ifndef INCLUDE_LoRaPLUGIN_H
|
|
|
|
#define INCLUDE_LoRaPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2017-10-31 07:24:05 +00:00
|
|
|
class DeviceUISet;
|
2017-11-08 13:23:49 +00:00
|
|
|
class BasebandSampleSink;
|
2016-05-16 08:05:09 +00:00
|
|
|
|
2015-01-11 00:12:58 +00:00
|
|
|
class LoRaPlugin : public QObject, PluginInterface {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginInterface)
|
|
|
|
Q_PLUGIN_METADATA(IID "de.maintech.sdrangelove.channel.lora")
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit LoRaPlugin(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const PluginDescriptor& getPluginDescriptor() const;
|
|
|
|
void initPlugin(PluginAPI* pluginAPI);
|
|
|
|
|
2017-11-09 00:03:05 +00:00
|
|
|
PluginInstanceGUI* createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-11-08 13:23:49 +00:00
|
|
|
BasebandSampleSink* createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI);
|
2017-12-17 22:15:42 +00:00
|
|
|
void createRxChannel(ChannelSinkAPI **channelSinkAPI, const QString& channelName, DeviceSourceAPI *deviceAPI);
|
2015-01-11 00:12:58 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_LoRaPLUGIN_H
|