mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-04 05:30:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <QtPlugin>
 | 
						|
#include "plugin/pluginapi.h"
 | 
						|
 | 
						|
#include "loraplugin.h"
 | 
						|
#include "lorademodgui.h"
 | 
						|
#include "lorademod.h"
 | 
						|
 | 
						|
const PluginDescriptor LoRaPlugin::m_pluginDescriptor = {
 | 
						|
    LoRaDemod::m_channelId,
 | 
						|
	QString("LoRa Demodulator"),
 | 
						|
	QString("4.19.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);
 | 
						|
}
 | 
						|
 | 
						|
void LoRaPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
 | 
						|
{
 | 
						|
	if (bs || cs)
 | 
						|
	{
 | 
						|
		LoRaDemod *instance = new LoRaDemod(deviceAPI);
 | 
						|
 | 
						|
		if (bs) {
 | 
						|
			*bs = instance;
 | 
						|
		}
 | 
						|
 | 
						|
		if (cs) {
 | 
						|
			*cs = instance;
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
ChannelGUI* LoRaPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
 | 
						|
{
 | 
						|
	return LoRaDemodGUI::create(m_pluginAPI, deviceUISet, rxChannel);
 | 
						|
}
 |