2017-09-02 04:35:17 +02: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-09-02 04:35:17 +02: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 "deviceplutosdr.h"
|
|
|
|
|
2019-01-04 11:23:54 +01:00
|
|
|
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
|
2017-09-05 14:11:25 +02:00
|
|
|
|
2017-09-10 10:16:23 +02:00
|
|
|
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
|
2017-09-05 14:11:25 +02:00
|
|
|
|
2017-09-09 15:34:04 +02:00
|
|
|
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
|
2017-09-05 14:11:25 +02:00
|
|
|
|
2017-09-12 18:49:12 +02:00
|
|
|
const float DevicePlutoSDR::firBWLowLimitFactor = 0.05f;
|
2017-09-10 19:37:23 +02:00
|
|
|
const float DevicePlutoSDR::firBWHighLimitFactor = 0.9f;
|
|
|
|
|
2017-09-02 04:35:17 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|