kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			71 wiersze
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			71 wiersze
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // 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                  //
 | |
| //                                                                               //
 | |
| // 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 "devicebladerfvalues.h"
 | |
| 
 | |
| 
 | |
| unsigned int DeviceBladeRFBandwidths::m_nb_halfbw = 16;
 | |
| unsigned int DeviceBladeRFBandwidths::m_halfbw[] = {
 | |
|         750,
 | |
|         875,
 | |
|        1250,
 | |
|        1375,
 | |
|        1500,
 | |
|        1920,
 | |
|        2500,
 | |
|        2750,
 | |
|        3000,
 | |
|        3500,
 | |
|        4375,
 | |
|        5000,
 | |
|        6000,
 | |
|        7000,
 | |
|       10000,
 | |
|       14000};
 | |
| 
 | |
| unsigned int DeviceBladeRFBandwidths::getBandwidth(unsigned int bandwidth_index)
 | |
| {
 | |
|     if (bandwidth_index < m_nb_halfbw)
 | |
|     {
 | |
|         return m_halfbw[bandwidth_index] * 2;
 | |
|     }
 | |
|     else
 | |
|     {
 | |
|         return m_halfbw[0] * 2;
 | |
|     }
 | |
| }
 | |
| 
 | |
| unsigned int DeviceBladeRFBandwidths::getBandwidthIndex(unsigned int bandwidth)
 | |
| {
 | |
|     for (unsigned int i=0; i < m_nb_halfbw; i++)
 | |
|     {
 | |
|         if (bandwidth/2000 == m_halfbw[i])
 | |
|         {
 | |
|             return i;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| unsigned int DeviceBladeRFBandwidths::getNbBandwidths()
 | |
| {
 | |
|     return DeviceBladeRFBandwidths::m_nb_halfbw;
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 |