2015-01-10 19:12:58 -05:00
|
|
|
#ifndef INCLUDE_LoRaPLUGIN_H
|
|
|
|
#define INCLUDE_LoRaPLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
|
2017-10-31 03:24:05 -04:00
|
|
|
class DeviceUISet;
|
2017-11-08 08:23:49 -05:00
|
|
|
class BasebandSampleSink;
|
2016-05-16 04:05:09 -04:00
|
|
|
|
2015-01-10 19:12:58 -05: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-08 19:03:05 -05:00
|
|
|
PluginInstanceGUI* createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel);
|
2017-11-08 08:23:49 -05:00
|
|
|
BasebandSampleSink* createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI);
|
2017-12-17 17:15:42 -05:00
|
|
|
void createRxChannel(ChannelSinkAPI **channelSinkAPI, const QString& channelName, DeviceSourceAPI *deviceAPI);
|
2015-01-10 19:12:58 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const PluginDescriptor m_pluginDescriptor;
|
|
|
|
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_LoRaPLUGIN_H
|