mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-30 04:20:21 -04:00 
			
		
		
		
	
		
			
	
	
		
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
|  | #include <QtPlugin>
 | ||
|  | #include <QAction>
 | ||
|  | #include "plugin/pluginapi.h"
 | ||
|  | #include "util/simpleserializer.h"
 | ||
|  | #include "gnuradioplugin.h"
 | ||
|  | #include "gnuradiogui.h"
 | ||
|  | 
 | ||
|  | const PluginDescriptor GNURadioPlugin::m_pluginDescriptor = { | ||
|  | 	QString("GR-OsmoSDR Input"), | ||
|  | 	QString("1.0"), | ||
|  | 	QString("(c) Dimitri Stolnikov <horiz0n@gmx.net>"), | ||
|  | 	QString("http://sdr.osmocom.org/trac/wiki/GrOsmoSDR"), | ||
|  | 	true, | ||
|  | 	QString("http://cgit.osmocom.org/cgit/gr-osmosdr") | ||
|  | }; | ||
|  | 
 | ||
|  | GNURadioPlugin::GNURadioPlugin(QObject* parent) : | ||
|  | 	QObject(parent) | ||
|  | { | ||
|  | } | ||
|  | 
 | ||
|  | const PluginDescriptor& GNURadioPlugin::getPluginDescriptor() const | ||
|  | { | ||
|  | 	return m_pluginDescriptor; | ||
|  | } | ||
|  | 
 | ||
|  | void GNURadioPlugin::initPlugin(PluginAPI* pluginAPI) | ||
|  | { | ||
|  | 	m_pluginAPI = pluginAPI; | ||
|  | 
 | ||
|  | 	m_pluginAPI->registerSampleSource("org.osmocom.sdr.samplesource.gr-osmosdr", this); | ||
|  | } | ||
|  | 
 | ||
|  | PluginInterface::SampleSourceDevices GNURadioPlugin::enumSampleSources() | ||
|  | { | ||
|  | 	SampleSourceDevices result; | ||
|  | 
 | ||
|  | 	result.append(SampleSourceDevice("GNURadio OsmoSDR Driver", "org.osmocom.sdr.samplesource.gr-osmosdr", QByteArray())); | ||
|  | 
 | ||
|  | 	return result; | ||
|  | } | ||
|  | 
 | ||
|  | PluginGUI* GNURadioPlugin::createSampleSource(const QString& sourceName, const QByteArray& address) | ||
|  | { | ||
|  | 	if(sourceName == "org.osmocom.sdr.samplesource.gr-osmosdr") { | ||
|  | 		GNURadioGui* gui = new GNURadioGui(m_pluginAPI); | ||
|  | 		m_pluginAPI->setInputGUI(gui); | ||
|  | 		return gui; | ||
|  | 	} else { | ||
|  | 		return NULL; | ||
|  | 	} | ||
|  | } |