mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <QtPlugin>
 | |
| #include "plugin/pluginapi.h"
 | |
| 
 | |
| #include "loraplugin.h"
 | |
| #include "lorademodgui.h"
 | |
| #include "lorademod.h"
 | |
| 
 | |
| const PluginDescriptor LoRaPlugin::m_pluginDescriptor = {
 | |
| 	QString("LoRa Demodulator"),
 | |
| 	QString("3.9.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(LoRaDemod::m_channelIdURI, LoRaDemod::m_channelId, this);
 | |
| }
 | |
| 
 | |
| PluginInstanceGUI* LoRaPlugin::createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
 | |
| {
 | |
| 	if(channelName == LoRaDemod::m_channelIdURI)
 | |
| 	{
 | |
| 		LoRaDemodGUI* gui = LoRaDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
 | |
| 		return gui;
 | |
| 	} else {
 | |
| 		return 0;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| BasebandSampleSink* LoRaPlugin::createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI)
 | |
| {
 | |
|     if(channelName == LoRaDemod::m_channelIdURI)
 | |
|     {
 | |
|         LoRaDemod* sink = new LoRaDemod(deviceAPI);
 | |
|         return sink;
 | |
|     } else {
 | |
|         return 0;
 | |
|     }
 | |
| }
 | |
| 
 | |
| void LoRaPlugin::createRxChannel(ChannelSinkAPI **channelSinkAPI, const QString& channelName, DeviceSourceAPI *deviceAPI)
 | |
| {
 | |
|     if(channelName == LoRaDemod::m_channelIdURI) {
 | |
|         *channelSinkAPI = new LoRaDemod(deviceAPI);
 | |
|     } else {
 | |
|         *channelSinkAPI = 0;
 | |
|     }
 | |
| }
 | |
| 
 |