| 
									
										
										
										
											2017-01-07 11:24:09 +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                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 00:33:11 +01:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2017-01-07 11:24:09 +01:00
										 |  |  | #include "devicehackrf.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  | DeviceHackRF::DeviceHackRF() | 
					
						
							| 
									
										
										
										
											2017-01-08 00:33:11 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  |     hackrf_error rc = (hackrf_error) hackrf_init(); | 
					
						
							| 
									
										
										
										
											2017-01-08 00:33:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  |     if (rc != HACKRF_SUCCESS) { | 
					
						
							| 
									
										
										
										
											2017-01-08 00:33:11 +01:00
										 |  |  |         fprintf(stderr, "DeviceHackRF::open_hackrf: failed to initiate HackRF library %s\n", hackrf_error_name(rc)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-08 00:33:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  | DeviceHackRF::~DeviceHackRF() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     hackrf_exit(); | 
					
						
							| 
									
										
										
										
											2017-01-08 00:33:11 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  | DeviceHackRF& DeviceHackRF::instance() | 
					
						
							| 
									
										
										
										
											2017-04-14 02:09:36 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  |     static DeviceHackRF inst; | 
					
						
							|  |  |  |     return inst; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-14 02:09:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  | hackrf_device *DeviceHackRF::open_hackrf(int sequence) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     instance(); | 
					
						
							| 
									
										
										
										
											2017-04-14 02:09:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  |     return open_hackrf_from_sequence(sequence); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-14 02:09:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  | hackrf_device *DeviceHackRF::open_hackrf(const char * const serial) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     hackrf_error rc; | 
					
						
							| 
									
										
										
										
											2017-04-14 02:09:36 +02:00
										 |  |  |     hackrf_device *hackrf_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  |     instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-14 02:09:36 +02:00
										 |  |  |     rc = (hackrf_error) hackrf_open_by_serial(serial, &hackrf_ptr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (rc == HACKRF_SUCCESS) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return hackrf_ptr; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 11:24:09 +01:00
										 |  |  | hackrf_device *DeviceHackRF::open_hackrf_from_sequence(int sequence) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     hackrf_device_list_t *hackrf_devices = hackrf_device_list(); | 
					
						
							|  |  |  |     hackrf_device *hackrf_ptr; | 
					
						
							|  |  |  |     hackrf_error rc; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 00:46:43 +02:00
										 |  |  |     instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 11:24:09 +01:00
										 |  |  |     rc = (hackrf_error) hackrf_device_list_open(hackrf_devices, sequence, &hackrf_ptr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (rc == HACKRF_SUCCESS) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return hackrf_ptr; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |