mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-04 23:14:47 -04:00
Add USRP device support.
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
|
||||
// Copyright (C) 2020 Jon Beniston, M7RCE //
|
||||
// //
|
||||
// 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 <QDebug>
|
||||
#include "deviceusrpparam.h"
|
||||
|
||||
bool DeviceUSRPParams::open(const char *deviceStr)
|
||||
{
|
||||
qDebug("DeviceUSRPParams::open: %s", (const char *) deviceStr);
|
||||
|
||||
std::string device_args(deviceStr);
|
||||
|
||||
m_dev = uhd::usrp::multi_usrp::make(device_args);
|
||||
|
||||
// Save information about what the radio supports
|
||||
|
||||
m_nbRxChannels = m_dev->get_rx_num_channels();
|
||||
m_nbTxChannels = m_dev->get_tx_num_channels();
|
||||
|
||||
m_lpfRangeRx = m_dev->get_rx_bandwidth_range();
|
||||
m_lpfRangeTx = m_dev->get_tx_bandwidth_range();
|
||||
|
||||
m_loRangeRx = m_dev->get_fe_rx_freq_range();
|
||||
m_loRangeTx = m_dev->get_fe_tx_freq_range();
|
||||
|
||||
m_srRangeRx = m_dev->get_rx_rates();
|
||||
m_srRangeTx = m_dev->get_tx_rates();
|
||||
|
||||
m_gainRangeRx = m_dev->get_rx_gain_range();
|
||||
m_gainRangeTx = m_dev->get_tx_gain_range();
|
||||
|
||||
std::vector<std::string> txAntennas = m_dev->get_tx_antennas();
|
||||
m_txAntennas.reserve(txAntennas.size());
|
||||
for(size_t i = 0, l = txAntennas.size(); i < l; ++i)
|
||||
m_txAntennas << QString::fromStdString(txAntennas[i]);
|
||||
|
||||
std::vector<std::string> rxAntennas = m_dev->get_rx_antennas();
|
||||
m_rxAntennas.reserve(rxAntennas.size());
|
||||
for(size_t i = 0, l = rxAntennas.size(); i < l; ++i)
|
||||
m_rxAntennas << QString::fromStdString(rxAntennas[i]);
|
||||
|
||||
std::vector<std::string> rxGainNames = m_dev->get_rx_gain_names();
|
||||
m_rxGainNames.reserve(rxGainNames.size());
|
||||
for(size_t i = 0, l = rxGainNames.size(); i < l; ++i)
|
||||
m_rxGainNames << QString::fromStdString(rxGainNames[i]);
|
||||
|
||||
std::vector<std::string> clockSources = m_dev->get_clock_sources(0);
|
||||
m_clockSources.reserve(clockSources.size());
|
||||
for(size_t i = 0, l = clockSources.size(); i < l; ++i)
|
||||
m_clockSources << QString::fromStdString(clockSources[i]);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void DeviceUSRPParams::close()
|
||||
{
|
||||
m_dev = nullptr;
|
||||
}
|
||||
Reference in New Issue
Block a user