| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #include <QtPlugin>
 | 
					
						
							|  |  |  | #include <rtl-sdr.h>
 | 
					
						
							| 
									
										
										
										
											2017-12-29 00:33:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #include "plugin/pluginapi.h"
 | 
					
						
							|  |  |  | #include "util/simpleserializer.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-11 01:17:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-29 00:33:37 +01:00
										 |  |  | #ifdef SERVER_MODE
 | 
					
						
							|  |  |  | #include "rtlsdrinput.h"
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #include "rtlsdrgui.h"
 | 
					
						
							| 
									
										
										
										
											2017-12-29 00:33:37 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #include "rtlsdrplugin.h"
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = { | 
					
						
							|  |  |  | 	QString("RTL-SDR Input"), | 
					
						
							| 
									
										
										
										
											2019-04-03 23:01:29 +02:00
										 |  |  | 	QString("4.5.4"), | 
					
						
							| 
									
										
										
										
											2015-09-02 01:16:40 +02:00
										 |  |  | 	QString("(c) Edouard Griffiths, F4EXB"), | 
					
						
							|  |  |  | 	QString("https://github.com/f4exb/sdrangel"), | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	true, | 
					
						
							| 
									
										
										
										
											2015-09-02 01:16:40 +02:00
										 |  |  | 	QString("https://github.com/f4exb/sdrangel") | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-29 12:41:10 +01:00
										 |  |  | const QString RTLSDRPlugin::m_hardwareID = "RTLSDR"; | 
					
						
							| 
									
										
										
										
											2015-10-01 05:05:46 +02:00
										 |  |  | const QString RTLSDRPlugin::m_deviceTypeID = RTLSDR_DEVICE_TYPE_ID; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | RTLSDRPlugin::RTLSDRPlugin(QObject* parent) : | 
					
						
							|  |  |  | 	QObject(parent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const PluginDescriptor& RTLSDRPlugin::getPluginDescriptor() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return m_pluginDescriptor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RTLSDRPlugin::initPlugin(PluginAPI* pluginAPI) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-05-17 17:53:22 +02:00
										 |  |  | 	pluginAPI->registerSampleSource(m_deviceTypeID, this); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 22:23:43 +02:00
										 |  |  | PluginInterface::SamplingDevices RTLSDRPlugin::enumSampleSources() | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-13 22:23:43 +02:00
										 |  |  | 	SamplingDevices result; | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	int count = rtlsdr_get_device_count(); | 
					
						
							|  |  |  | 	char vendor[256]; | 
					
						
							|  |  |  | 	char product[256]; | 
					
						
							|  |  |  | 	char serial[256]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for(int i = 0; i < count; i++) { | 
					
						
							|  |  |  | 		vendor[0] = '\0'; | 
					
						
							|  |  |  | 		product[0] = '\0'; | 
					
						
							|  |  |  | 		serial[0] = '\0'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 17:11:08 +00:00
										 |  |  | 		if(rtlsdr_get_device_usb_strings((uint32_t)i, vendor, product, serial) != 0) | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2015-10-01 05:44:33 +02:00
										 |  |  | 		QString displayedName(QString("RTL-SDR[%1] %2").arg(i).arg(serial)); | 
					
						
							| 
									
										
										
										
											2015-09-30 06:57:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-13 22:23:43 +02:00
										 |  |  | 		result.append(SamplingDevice(displayedName, | 
					
						
							| 
									
										
										
										
											2016-12-29 12:41:10 +01:00
										 |  |  | 		        m_hardwareID, | 
					
						
							| 
									
										
										
										
											2015-10-01 05:05:46 +02:00
										 |  |  | 				m_deviceTypeID, | 
					
						
							| 
									
										
										
										
											2015-09-30 06:57:40 +02:00
										 |  |  | 				QString(serial), | 
					
						
							| 
									
										
										
										
											2017-11-01 10:37:00 +01:00
										 |  |  | 				i, | 
					
						
							| 
									
										
										
										
											2017-11-01 20:06:33 +01:00
										 |  |  | 				PluginInterface::SamplingDevice::PhysicalDevice, | 
					
						
							| 
									
										
										
										
											2019-05-07 18:58:20 +02:00
										 |  |  | 				PluginInterface::SamplingDevice::StreamSingleRx, | 
					
						
							| 
									
										
										
										
											2017-11-19 01:05:16 +01:00
										 |  |  | 				1, | 
					
						
							| 
									
										
										
										
											2017-11-01 10:37:00 +01:00
										 |  |  | 				0)); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-17 14:52:18 +01:00
										 |  |  | #ifdef SERVER_MODE
 | 
					
						
							|  |  |  | PluginInstanceGUI* RTLSDRPlugin::createSampleSourcePluginInstanceGUI( | 
					
						
							| 
									
										
										
										
											2019-05-24 09:37:13 +02:00
										 |  |  |         const QString& sourceId, | 
					
						
							|  |  |  |         QWidget **widget, | 
					
						
							|  |  |  |         DeviceUISet *deviceUISet) | 
					
						
							| 
									
										
										
										
											2017-12-17 14:52:18 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-19 18:50:55 +02:00
										 |  |  |     (void) sourceId; | 
					
						
							|  |  |  |     (void) widget; | 
					
						
							|  |  |  |     (void) deviceUISet; | 
					
						
							| 
									
										
										
										
											2017-12-17 14:52:18 +01:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-10-30 00:02:28 +01:00
										 |  |  | PluginInstanceGUI* RTLSDRPlugin::createSampleSourcePluginInstanceGUI( | 
					
						
							|  |  |  |         const QString& sourceId, | 
					
						
							|  |  |  |         QWidget **widget, | 
					
						
							|  |  |  |         DeviceUISet *deviceUISet) | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-10-01 05:05:46 +02:00
										 |  |  | 	if(sourceId == m_deviceTypeID) { | 
					
						
							| 
									
										
										
										
											2017-10-30 00:45:23 +01:00
										 |  |  | 		RTLSDRGui* gui = new RTLSDRGui(deviceUISet); | 
					
						
							| 
									
										
										
										
											2016-05-17 03:41:01 +02:00
										 |  |  | 		*widget = gui; | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 		return gui; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-09-14 13:34:32 +02:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-17 14:52:18 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-09-14 13:34:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-19 10:28:50 +02:00
										 |  |  | DeviceSampleSource *RTLSDRPlugin::createSampleSourcePluginInstance(const QString& sourceId, DeviceAPI *deviceAPI) | 
					
						
							| 
									
										
										
										
											2017-09-14 13:34:32 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (sourceId == m_deviceTypeID) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         RTLSDRInput* input = new RTLSDRInput(deviceAPI); | 
					
						
							|  |  |  |         return input; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |