| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2017 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,               //
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | 
					
						
							|  |  |  | // GNU General Public License V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QtPlugin>
 | 
					
						
							|  |  |  | #include "libhackrf/hackrf.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "plugin/pluginapi.h"
 | 
					
						
							|  |  |  | #include "util/simpleserializer.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-29 00:44:17 +01:00
										 |  |  | #ifdef SERVER_MODE
 | 
					
						
							|  |  |  | #include "hackrfoutput.h"
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | #include "hackrfoutputgui.h"
 | 
					
						
							| 
									
										
										
										
											2017-12-29 00:44:17 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #include "hackrfoutputplugin.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  | #include "hackrfoutputwebapiadapter.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | const PluginDescriptor HackRFOutputPlugin::m_pluginDescriptor = { | 
					
						
							|  |  |  | 	QString("HackRF Output"), | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  | 	QString("4.11.6"), | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | 	QString("(c) Edouard Griffiths, F4EXB"), | 
					
						
							|  |  |  | 	QString("https://github.com/f4exb/sdrangel"), | 
					
						
							|  |  |  | 	true, | 
					
						
							|  |  |  | 	QString("https://github.com/f4exb/sdrangel") | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const QString HackRFOutputPlugin::m_hardwareID = "HackRF"; | 
					
						
							|  |  |  | const QString HackRFOutputPlugin::m_deviceTypeID = HACKRFOUTPUT_DEVICE_TYPE_ID; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HackRFOutputPlugin::HackRFOutputPlugin(QObject* parent) : | 
					
						
							|  |  |  | 	QObject(parent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const PluginDescriptor& HackRFOutputPlugin::getPluginDescriptor() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return m_pluginDescriptor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void HackRFOutputPlugin::initPlugin(PluginAPI* pluginAPI) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pluginAPI->registerSampleSink(m_deviceTypeID, this); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PluginInterface::SamplingDevices HackRFOutputPlugin::enumSampleSinks() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	SamplingDevices result; | 
					
						
							|  |  |  | 	hackrf_device_list_t *hackrf_devices = hackrf_device_list(); | 
					
						
							|  |  |  | 	hackrf_device *hackrf_ptr; | 
					
						
							|  |  |  | 	read_partid_serialno_t read_partid_serialno; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i=0; i < hackrf_devices->devicecount; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  | 	    hackrf_error rc = (hackrf_error) hackrf_device_list_open(hackrf_devices, i, &hackrf_ptr); | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (rc == HACKRF_SUCCESS) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			qDebug("HackRFOutputPlugin::enumSampleSinks: try to enumerate HackRF device #%d", i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			rc = (hackrf_error) hackrf_board_partid_serialno_read(hackrf_ptr, &read_partid_serialno); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (rc != HACKRF_SUCCESS) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				qDebug("HackRFOutputPlugin::enumSampleSinks: failed to read serial no: %s", hackrf_error_name(rc)); | 
					
						
							|  |  |  | 				hackrf_close(hackrf_ptr); | 
					
						
							|  |  |  | 				continue; // next
 | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			uint32_t serial_msb = read_partid_serialno.serial_no[2]; | 
					
						
							|  |  |  | 			uint32_t serial_lsb = read_partid_serialno.serial_no[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			QString serial_str = QString::number(serial_msb, 16) + QString::number(serial_lsb, 16); | 
					
						
							| 
									
										
										
										
											2017-05-25 20:13:34 +02:00
										 |  |  | 			//uint64_t serial_num = (((uint64_t) serial_msb)<<32) + serial_lsb;
 | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | 			QString displayedName(QString("HackRF[%1] %2").arg(i).arg(serial_str)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			result.append(SamplingDevice(displayedName, | 
					
						
							|  |  |  | 			        m_hardwareID, | 
					
						
							|  |  |  | 			        m_deviceTypeID, | 
					
						
							|  |  |  | 					serial_str, | 
					
						
							| 
									
										
										
										
											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::StreamSingleTx, | 
					
						
							| 
									
										
										
										
											2017-11-19 01:05:16 +01:00
										 |  |  | 					1, | 
					
						
							| 
									
										
										
										
											2017-11-01 10:37:00 +01:00
										 |  |  | 					0)); | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			qDebug("HackRFOutputPlugin::enumSampleSinks: enumerated HackRF device #%d", i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			hackrf_close(hackrf_ptr); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			qDebug("HackRFOutputPlugin::enumSampleSinks: failed to enumerate HackRF device #%d: %s", i, hackrf_error_name(rc)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hackrf_device_list_free(hackrf_devices); | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-29 00:44:17 +01:00
										 |  |  | #ifdef SERVER_MODE
 | 
					
						
							|  |  |  | PluginInstanceGUI* HackRFOutputPlugin::createSampleSinkPluginInstanceGUI( | 
					
						
							| 
									
										
										
										
											2019-05-24 09:37:13 +02:00
										 |  |  |         const QString& sinkId, | 
					
						
							|  |  |  |         QWidget **widget, | 
					
						
							|  |  |  |         DeviceUISet *deviceUISet) | 
					
						
							| 
									
										
										
										
											2017-12-29 00:44:17 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-19 18:50:55 +02:00
										 |  |  |     (void) sinkId; | 
					
						
							|  |  |  |     (void) widget; | 
					
						
							|  |  |  |     (void) deviceUISet; | 
					
						
							| 
									
										
										
										
											2017-12-29 00:44:17 +01:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-10-30 01:11:35 +01:00
										 |  |  | PluginInstanceGUI* HackRFOutputPlugin::createSampleSinkPluginInstanceGUI( | 
					
						
							|  |  |  |         const QString& sinkId, | 
					
						
							|  |  |  |         QWidget **widget, | 
					
						
							|  |  |  |         DeviceUISet *deviceUISet) | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	if(sinkId == m_deviceTypeID) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-10-30 02:54:22 +01:00
										 |  |  | 		HackRFOutputGui* gui = new HackRFOutputGui(deviceUISet); | 
					
						
							| 
									
										
										
										
											2017-01-08 04:13:20 +01:00
										 |  |  | 		*widget = gui; | 
					
						
							|  |  |  | 		return gui; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-29 00:44:17 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-09-14 13:55:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-19 10:28:50 +02:00
										 |  |  | DeviceSampleSink* HackRFOutputPlugin::createSampleSinkPluginInstance(const QString& sinkId, DeviceAPI *deviceAPI) | 
					
						
							| 
									
										
										
										
											2017-09-14 13:55:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if(sinkId == m_deviceTypeID) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         HackRFOutput* output = new HackRFOutput(deviceAPI); | 
					
						
							|  |  |  |         return output; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  | DeviceWebAPIAdapter *HackRFOutputPlugin::createDeviceWebAPIAdapter() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return new HackRFOutputWebAPIAdapter(); | 
					
						
							|  |  |  | } |