kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			58 wiersze
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			58 wiersze
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
| #include <QtPlugin>
 | |
| #include <QAction>
 | |
| #include "plugin/pluginapi.h"
 | |
| 
 | |
| #include "amdemodgui.h"
 | |
| #include "amdemod.h"
 | |
| #include "amdemodplugin.h"
 | |
| 
 | |
| const PluginDescriptor AMDemodPlugin::m_pluginDescriptor = {
 | |
| 	QString("AM Demodulator"),
 | |
| 	QString("3.8.2"),
 | |
| 	QString("(c) Edouard Griffiths, F4EXB"),
 | |
| 	QString("https://github.com/f4exb/sdrangel"),
 | |
| 	true,
 | |
| 	QString("https://github.com/f4exb/sdrangel")
 | |
| };
 | |
| 
 | |
| AMDemodPlugin::AMDemodPlugin(QObject* parent) :
 | |
| 	QObject(parent),
 | |
| 	m_pluginAPI(0)
 | |
| {
 | |
| }
 | |
| 
 | |
| const PluginDescriptor& AMDemodPlugin::getPluginDescriptor() const
 | |
| {
 | |
| 	return m_pluginDescriptor;
 | |
| }
 | |
| 
 | |
| void AMDemodPlugin::initPlugin(PluginAPI* pluginAPI)
 | |
| {
 | |
| 	m_pluginAPI = pluginAPI;
 | |
| 
 | |
| 	// register AM demodulator
 | |
| 	m_pluginAPI->registerRxChannel(AMDemodGUI::m_channelID, this);
 | |
| }
 | |
| 
 | |
| PluginInstanceGUI* AMDemodPlugin::createRxChannelGUI(const QString& channelName, DeviceUISet *deviceUISet)
 | |
| {
 | |
| 	if(channelName == AMDemodGUI::m_channelID)
 | |
| 	{
 | |
| 		AMDemodGUI* gui = AMDemodGUI::create(m_pluginAPI, deviceUISet);
 | |
| 		return gui;
 | |
| 	} else {
 | |
| 		return 0;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| BasebandSampleSink* AMDemodPlugin::createRxChannel(const QString& channelName, DeviceSourceAPI *deviceAPI)
 | |
| {
 | |
|     if(channelName == AMDemodGUI::m_channelID)
 | |
|     {
 | |
|         AMDemod* sink = new AMDemod(deviceAPI);
 | |
|         return sink;
 | |
|     } else {
 | |
|         return 0;
 | |
|     }
 | |
| }
 |