| 
									
										
										
										
											2016-12-30 16:13:28 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2016-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.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-12-30 16:13:28 +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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 05:26:18 +02:00
										 |  |  | #include "../bladerf1/devicebladerf1values.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-30 16:13:28 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 05:26:18 +02:00
										 |  |  | unsigned int DeviceBladeRF1Bandwidths::m_nb_halfbw = 16; | 
					
						
							|  |  |  | unsigned int DeviceBladeRF1Bandwidths::m_halfbw[] = { | 
					
						
							| 
									
										
										
										
											2017-03-12 00:41:05 +01:00
										 |  |  |         750, | 
					
						
							|  |  |  |         875, | 
					
						
							|  |  |  |        1250, | 
					
						
							|  |  |  |        1375, | 
					
						
							|  |  |  |        1500, | 
					
						
							|  |  |  |        1920, | 
					
						
							|  |  |  |        2500, | 
					
						
							|  |  |  |        2750, | 
					
						
							|  |  |  |        3000, | 
					
						
							|  |  |  |        3500, | 
					
						
							|  |  |  |        4375, | 
					
						
							|  |  |  |        5000, | 
					
						
							|  |  |  |        6000, | 
					
						
							|  |  |  |        7000, | 
					
						
							|  |  |  |       10000, | 
					
						
							|  |  |  |       14000}; | 
					
						
							| 
									
										
										
										
											2016-12-30 16:13:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 05:26:18 +02:00
										 |  |  | unsigned int DeviceBladeRF1Bandwidths::getBandwidth(unsigned int bandwidth_index) | 
					
						
							| 
									
										
										
										
											2016-12-30 16:13:28 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     if (bandwidth_index < m_nb_halfbw) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return m_halfbw[bandwidth_index] * 2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return m_halfbw[0] * 2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 05:26:18 +02:00
										 |  |  | unsigned int DeviceBladeRF1Bandwidths::getBandwidthIndex(unsigned int bandwidth) | 
					
						
							| 
									
										
										
										
											2016-12-30 16:13:28 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     for (unsigned int i=0; i < m_nb_halfbw; i++) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (bandwidth/2000 == m_halfbw[i]) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return i; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 05:26:18 +02:00
										 |  |  | unsigned int DeviceBladeRF1Bandwidths::getNbBandwidths() | 
					
						
							| 
									
										
										
										
											2016-12-30 16:13:28 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-19 05:26:18 +02:00
										 |  |  |     return DeviceBladeRF1Bandwidths::m_nb_halfbw; | 
					
						
							| 
									
										
										
										
											2016-12-30 16:13:28 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |