mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 04:50:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // 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                  //
 | |
| // (at your option) any later version.                                           //
 | |
| //                                                                               //
 | |
| // 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 "deviceplutosdr.h"
 | |
| 
 | |
| const uint64_t DevicePlutoSDR::rxLOLowLimitFreq  =   70000000UL; // 70 MHz: take AD9364 specs
 | |
| const uint64_t DevicePlutoSDR::rxLOHighLimitFreq = 6000000000UL; //  6 GHz: take AD9364 specs
 | |
| 
 | |
| const uint64_t DevicePlutoSDR::txLOLowLimitFreq  =   46875000UL; // 46.875 MHz: take AD9364 specs
 | |
| const uint64_t DevicePlutoSDR::txLOHighLimitFreq = 6000000000UL; //  6 GHz: take AD9364 specs
 | |
| 
 | |
| const uint32_t DevicePlutoSDR::srLowLimitFreq  = (25000000U/12U)+3U; // 25/12 MS/s without FIR interpolation/decimation (+3 so it is the next multiple of 4)
 | |
| const uint32_t DevicePlutoSDR::srHighLimitFreq = 20000000U;     // 20 MS/s: take AD9363 speces
 | |
| 
 | |
| const uint32_t DevicePlutoSDR::bbLPRxLowLimitFreq  =   200000U; // 200 kHz
 | |
| const uint32_t DevicePlutoSDR::bbLPRxHighLimitFreq = 14000000U; // 14 MHz
 | |
| const uint32_t DevicePlutoSDR::bbLPTxLowLimitFreq  =   625000U; // 625 kHz
 | |
| const uint32_t DevicePlutoSDR::bbLPTxHighLimitFreq = 16000000U; // 16 MHz
 | |
| 
 | |
| const float DevicePlutoSDR::firBWLowLimitFactor  = 0.05f;
 | |
| const float DevicePlutoSDR::firBWHighLimitFactor = 0.9f;
 | |
| 
 | |
| DevicePlutoSDR::DevicePlutoSDR()
 | |
| {
 | |
| }
 | |
| 
 | |
| DevicePlutoSDR::~DevicePlutoSDR()
 | |
| {
 | |
| }
 | |
| 
 | |
| DevicePlutoSDR& DevicePlutoSDR::instance()
 | |
| {
 | |
|     static DevicePlutoSDR inst;
 | |
|     return inst;
 | |
| }
 | |
| 
 | |
| DevicePlutoSDRBox* DevicePlutoSDR::getDeviceFromURI(const std::string& uri)
 | |
| {
 | |
|     return new DevicePlutoSDRBox(uri);
 | |
| }
 | |
| 
 | |
| DevicePlutoSDRBox* DevicePlutoSDR::getDeviceFromSerial(const std::string& serial)
 | |
| {
 | |
|     const std::string *uri = m_scan.getURIFromSerial(serial);
 | |
| 
 | |
|     if (uri) {
 | |
|         return new DevicePlutoSDRBox(*uri);
 | |
|     } else {
 | |
|         return 0;
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 |