2015-06-07 11:56:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-12-26 21:11:57 -05:00
|
|
|
#include "../bladerfinput/bladerfinputgui.h"
|
|
|
|
|
2015-08-09 04:33:04 -04:00
|
|
|
#include <QDebug>
|
2016-05-11 17:35:16 -04:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
#include <libbladeRF.h>
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
#include "ui_bladerfinputgui.h"
|
2015-07-19 13:39:16 -04:00
|
|
|
#include "gui/colormapper.h"
|
2016-05-12 04:31:57 -04:00
|
|
|
#include "gui/glspectrum.h"
|
2015-08-17 02:29:34 -04:00
|
|
|
#include "dsp/dspengine.h"
|
2016-05-12 04:31:57 -04:00
|
|
|
#include "dsp/dspcommands.h"
|
2016-10-10 19:17:55 -04:00
|
|
|
#include <device/devicesourceapi.h>
|
2016-10-02 04:30:58 -04:00
|
|
|
#include <dsp/filerecord.h>
|
2015-06-06 21:30:28 -04:00
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
BladerfInputGui::BladerfInputGui(DeviceSourceAPI *deviceAPI, QWidget* parent) :
|
2015-06-06 21:30:28 -04:00
|
|
|
QWidget(parent),
|
2016-12-26 20:14:31 -05:00
|
|
|
ui(new Ui::BladerfInputGui),
|
2016-05-15 19:12:37 -04:00
|
|
|
m_deviceAPI(deviceAPI),
|
2015-06-06 21:30:28 -04:00
|
|
|
m_settings(),
|
2016-05-11 17:35:16 -04:00
|
|
|
m_sampleSource(NULL),
|
2016-05-12 04:31:57 -04:00
|
|
|
m_sampleRate(0),
|
2016-10-03 12:29:05 -04:00
|
|
|
m_lastEngineState((DSPDeviceSourceEngine::State)-1)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2015-07-19 16:00:38 -04:00
|
|
|
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
|
2015-06-09 02:18:32 -04:00
|
|
|
ui->centerFrequency->setValueRange(7, BLADERF_FREQUENCY_MIN_XB200/1000, BLADERF_FREQUENCY_MAX/1000);
|
2016-03-29 11:31:44 -04:00
|
|
|
|
|
|
|
ui->samplerate->clear();
|
|
|
|
for (int i = 0; i < BladerfSampleRates::getNbRates(); i++)
|
|
|
|
{
|
|
|
|
ui->samplerate->addItem(QString::number(BladerfSampleRates::getRate(i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->bandwidth->clear();
|
|
|
|
for (int i = 0; i < BladerfBandwidths::getNbBandwidths(); i++)
|
|
|
|
{
|
|
|
|
ui->bandwidth->addItem(QString::number(BladerfBandwidths::getBandwidth(i)));
|
|
|
|
}
|
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
|
2016-05-11 17:35:16 -04:00
|
|
|
connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus()));
|
|
|
|
m_statusTimer.start(500);
|
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
displaySettings();
|
|
|
|
|
2016-05-15 20:14:36 -04:00
|
|
|
m_sampleSource = new BladerfInput(m_deviceAPI);
|
|
|
|
m_deviceAPI->setSource(m_sampleSource);
|
2016-05-12 04:31:57 -04:00
|
|
|
|
|
|
|
char recFileNameCStr[30];
|
2016-05-15 20:14:36 -04:00
|
|
|
sprintf(recFileNameCStr, "test_%d.sdriq", m_deviceAPI->getDeviceUID());
|
2016-10-02 04:30:58 -04:00
|
|
|
m_fileSink = new FileRecord(std::string(recFileNameCStr));
|
2016-05-15 19:12:37 -04:00
|
|
|
m_deviceAPI->addSink(m_fileSink);
|
2016-05-12 04:31:57 -04:00
|
|
|
|
2016-05-15 20:14:36 -04:00
|
|
|
connect(m_deviceAPI->getDeviceOutputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleDSPMessages()), Qt::QueuedConnection);
|
2015-06-06 21:30:28 -04:00
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
BladerfInputGui::~BladerfInputGui()
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2016-05-15 20:14:36 -04:00
|
|
|
m_deviceAPI->removeSink(m_fileSink);
|
2016-05-12 04:31:57 -04:00
|
|
|
delete m_fileSink;
|
2015-08-28 21:09:44 -04:00
|
|
|
delete m_sampleSource; // Valgrind memcheck
|
2015-06-06 21:30:28 -04:00
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::destroy()
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::setName(const QString& name)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
setObjectName(name);
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
QString BladerfInputGui::getName() const
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
return objectName();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::resetToDefaults()
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
m_settings.resetToDefaults();
|
|
|
|
displaySettings();
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
qint64 BladerfInputGui::getCenterFrequency() const
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2015-08-17 02:29:34 -04:00
|
|
|
return m_settings.m_centerFrequency;
|
2015-06-06 21:30:28 -04:00
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::setCenterFrequency(qint64 centerFrequency)
|
2015-09-28 21:35:14 -04:00
|
|
|
{
|
|
|
|
m_settings.m_centerFrequency = centerFrequency;
|
|
|
|
displaySettings();
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
QByteArray BladerfInputGui::serialize() const
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
return m_settings.serialize();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
bool BladerfInputGui::deserialize(const QByteArray& data)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
if(m_settings.deserialize(data)) {
|
|
|
|
displaySettings();
|
|
|
|
sendSettings();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
bool BladerfInputGui::handleMessage(const Message& message)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2015-08-17 02:29:34 -04:00
|
|
|
if (BladerfInput::MsgReportBladerf::match(message))
|
|
|
|
{
|
2015-06-06 21:30:28 -04:00
|
|
|
displaySettings();
|
|
|
|
return true;
|
2015-08-17 02:29:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-06-06 21:30:28 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::handleDSPMessages()
|
2016-05-12 04:31:57 -04:00
|
|
|
{
|
|
|
|
Message* message;
|
|
|
|
|
2016-05-15 20:14:36 -04:00
|
|
|
while ((message = m_deviceAPI->getDeviceOutputMessageQueue()->pop()) != 0)
|
2016-05-12 04:31:57 -04:00
|
|
|
{
|
|
|
|
qDebug("BladerfGui::handleDSPMessages: message: %s", message->getIdentifier());
|
|
|
|
|
|
|
|
if (DSPSignalNotification::match(*message))
|
|
|
|
{
|
|
|
|
DSPSignalNotification* notif = (DSPSignalNotification*) message;
|
|
|
|
m_sampleRate = notif->getSampleRate();
|
|
|
|
m_deviceCenterFrequency = notif->getCenterFrequency();
|
|
|
|
qDebug("BladerfGui::handleDSPMessages: SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency());
|
|
|
|
updateSampleRateAndFrequency();
|
2016-05-12 05:10:10 -04:00
|
|
|
m_fileSink->handleMessage(*notif); // forward to file sink
|
2016-05-12 04:31:57 -04:00
|
|
|
|
|
|
|
delete message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::updateSampleRateAndFrequency()
|
2016-05-12 04:31:57 -04:00
|
|
|
{
|
2016-05-15 20:14:36 -04:00
|
|
|
m_deviceAPI->getSpectrum()->setSampleRate(m_sampleRate);
|
|
|
|
m_deviceAPI->getSpectrum()->setCenterFrequency(m_deviceCenterFrequency);
|
2016-05-12 04:31:57 -04:00
|
|
|
ui->deviceRateLabel->setText(tr("%1k").arg((float)m_sampleRate / 1000));
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::displaySettings()
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2015-08-17 02:29:34 -04:00
|
|
|
ui->centerFrequency->setValue(m_settings.m_centerFrequency / 1000);
|
2015-06-06 21:30:28 -04:00
|
|
|
|
2015-09-30 21:18:20 -04:00
|
|
|
ui->dcOffset->setChecked(m_settings.m_dcBlock);
|
|
|
|
ui->iqImbalance->setChecked(m_settings.m_iqCorrection);
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
unsigned int sampleRateIndex = BladerfSampleRates::getRateIndex(m_settings.m_devSampleRate);
|
2016-03-29 11:31:44 -04:00
|
|
|
ui->samplerate->setCurrentIndex(sampleRateIndex);
|
2015-06-06 21:30:28 -04:00
|
|
|
|
|
|
|
unsigned int bandwidthIndex = BladerfBandwidths::getBandwidthIndex(m_settings.m_bandwidth);
|
2016-03-29 11:31:44 -04:00
|
|
|
ui->bandwidth->setCurrentIndex(bandwidthIndex);
|
2015-06-06 21:30:28 -04:00
|
|
|
|
2016-03-29 11:31:44 -04:00
|
|
|
ui->decim->setCurrentIndex(m_settings.m_log2Decim);
|
2015-06-06 21:30:28 -04:00
|
|
|
|
2015-07-01 19:00:27 -04:00
|
|
|
ui->fcPos->setCurrentIndex((int) m_settings.m_fcPos);
|
|
|
|
|
2016-03-29 11:31:44 -04:00
|
|
|
ui->lna->setCurrentIndex(m_settings.m_lnaGain);
|
2015-06-06 21:30:28 -04:00
|
|
|
|
2015-07-26 14:44:05 -04:00
|
|
|
ui->vga1Text->setText(tr("%1dB").arg(m_settings.m_vga1));
|
2015-06-06 21:30:28 -04:00
|
|
|
ui->vga1->setValue(m_settings.m_vga1);
|
|
|
|
|
2015-07-28 17:54:17 -04:00
|
|
|
ui->vga2Text->setText(tr("%1dB").arg(m_settings.m_vga2));
|
2015-06-06 21:30:28 -04:00
|
|
|
ui->vga2->setValue(m_settings.m_vga2);
|
|
|
|
|
|
|
|
ui->xb200->setCurrentIndex(getXb200Index(m_settings.m_xb200, m_settings.m_xb200Path, m_settings.m_xb200Filter));
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::sendSettings()
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
if(!m_updateTimer.isActive())
|
|
|
|
m_updateTimer.start(100);
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_centerFrequency_changed(quint64 value)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2015-08-17 02:29:34 -04:00
|
|
|
m_settings.m_centerFrequency = value * 1000;
|
2015-06-06 21:30:28 -04:00
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_dcOffset_toggled(bool checked)
|
2015-09-30 21:18:20 -04:00
|
|
|
{
|
|
|
|
m_settings.m_dcBlock = checked;
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_iqImbalance_toggled(bool checked)
|
2015-09-30 21:18:20 -04:00
|
|
|
{
|
|
|
|
m_settings.m_iqCorrection = checked;
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_samplerate_currentIndexChanged(int index)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2016-03-29 11:31:44 -04:00
|
|
|
int newrate = BladerfSampleRates::getRate(index);
|
2015-08-17 02:29:34 -04:00
|
|
|
m_settings.m_devSampleRate = newrate * 1000;
|
2015-06-06 21:30:28 -04:00
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_bandwidth_currentIndexChanged(int index)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2016-03-29 11:31:44 -04:00
|
|
|
int newbw = BladerfBandwidths::getBandwidth(index);
|
2015-06-06 21:30:28 -04:00
|
|
|
m_settings.m_bandwidth = newbw * 1000;
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_decim_currentIndexChanged(int index)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2016-03-29 11:31:44 -04:00
|
|
|
if ((index <0) || (index > 5))
|
2015-06-06 21:30:28 -04:00
|
|
|
return;
|
2016-03-29 11:31:44 -04:00
|
|
|
m_settings.m_log2Decim = index;
|
2015-06-06 21:30:28 -04:00
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_fcPos_currentIndexChanged(int index)
|
2015-07-01 19:00:27 -04:00
|
|
|
{
|
|
|
|
if (index == 0) {
|
2016-12-26 20:14:31 -05:00
|
|
|
m_settings.m_fcPos = BladeRFInputSettings::FC_POS_INFRA;
|
2015-07-01 19:00:27 -04:00
|
|
|
sendSettings();
|
|
|
|
} else if (index == 1) {
|
2016-12-26 20:14:31 -05:00
|
|
|
m_settings.m_fcPos = BladeRFInputSettings::FC_POS_SUPRA;
|
2015-07-01 19:00:27 -04:00
|
|
|
sendSettings();
|
2015-07-01 20:10:14 -04:00
|
|
|
} else if (index == 2) {
|
2016-12-26 20:14:31 -05:00
|
|
|
m_settings.m_fcPos = BladeRFInputSettings::FC_POS_CENTER;
|
2015-07-01 20:10:14 -04:00
|
|
|
sendSettings();
|
2015-07-01 19:00:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_lna_currentIndexChanged(int index)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2016-03-29 11:31:44 -04:00
|
|
|
qDebug() << "BladerfGui: LNA gain = " << index * 3 << " dB";
|
2015-06-06 21:30:28 -04:00
|
|
|
|
2016-03-29 11:31:44 -04:00
|
|
|
if ((index < 0) || (index > 2))
|
2015-06-06 21:30:28 -04:00
|
|
|
return;
|
|
|
|
|
2016-03-29 11:31:44 -04:00
|
|
|
m_settings.m_lnaGain = index;
|
2015-06-06 21:30:28 -04:00
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_vga1_valueChanged(int value)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
if ((value < BLADERF_RXVGA1_GAIN_MIN) || (value > BLADERF_RXVGA1_GAIN_MAX))
|
|
|
|
return;
|
|
|
|
|
2015-07-26 14:44:05 -04:00
|
|
|
ui->vga1Text->setText(tr("%1dB").arg(value));
|
2015-06-06 21:30:28 -04:00
|
|
|
m_settings.m_vga1 = value;
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_vga2_valueChanged(int value)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
if ((value < BLADERF_RXVGA2_GAIN_MIN) || (value > BLADERF_RXVGA2_GAIN_MAX))
|
|
|
|
return;
|
|
|
|
|
2015-07-26 14:44:05 -04:00
|
|
|
ui->vga2Text->setText(tr("%1dB").arg(value));
|
2015-06-06 21:30:28 -04:00
|
|
|
m_settings.m_vga2 = value;
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_xb200_currentIndexChanged(int index)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
if (index == 1) // bypass
|
|
|
|
{
|
|
|
|
m_settings.m_xb200 = true;
|
|
|
|
m_settings.m_xb200Path = BLADERF_XB200_BYPASS;
|
|
|
|
}
|
|
|
|
else if (index == 2) // Auto 1dB
|
|
|
|
{
|
|
|
|
m_settings.m_xb200 = true;
|
|
|
|
m_settings.m_xb200Path = BLADERF_XB200_MIX;
|
|
|
|
m_settings.m_xb200Filter = BLADERF_XB200_AUTO_1DB;
|
|
|
|
}
|
|
|
|
else if (index == 3) // Auto 3dB
|
|
|
|
{
|
|
|
|
m_settings.m_xb200 = true;
|
|
|
|
m_settings.m_xb200Path = BLADERF_XB200_MIX;
|
|
|
|
m_settings.m_xb200Filter = BLADERF_XB200_AUTO_3DB;
|
|
|
|
}
|
|
|
|
else if (index == 4) // Custom
|
|
|
|
{
|
|
|
|
m_settings.m_xb200 = true;
|
|
|
|
m_settings.m_xb200Path = BLADERF_XB200_MIX;
|
|
|
|
m_settings.m_xb200Filter = BLADERF_XB200_CUSTOM;
|
|
|
|
}
|
|
|
|
else if (index == 5) // 50 MHz
|
|
|
|
{
|
|
|
|
m_settings.m_xb200 = true;
|
|
|
|
m_settings.m_xb200Path = BLADERF_XB200_MIX;
|
|
|
|
m_settings.m_xb200Filter = BLADERF_XB200_50M;
|
|
|
|
}
|
|
|
|
else if (index == 6) // 144 MHz
|
|
|
|
{
|
|
|
|
m_settings.m_xb200 = true;
|
|
|
|
m_settings.m_xb200Path = BLADERF_XB200_MIX;
|
|
|
|
m_settings.m_xb200Filter = BLADERF_XB200_144M;
|
|
|
|
}
|
|
|
|
else if (index == 7) // 222 MHz
|
|
|
|
{
|
|
|
|
m_settings.m_xb200 = true;
|
|
|
|
m_settings.m_xb200Path = BLADERF_XB200_MIX;
|
|
|
|
m_settings.m_xb200Filter = BLADERF_XB200_222M;
|
|
|
|
}
|
|
|
|
else // no xb200
|
|
|
|
{
|
|
|
|
m_settings.m_xb200 = false;
|
|
|
|
}
|
|
|
|
|
2015-06-07 17:07:19 -04:00
|
|
|
if (m_settings.m_xb200)
|
|
|
|
{
|
|
|
|
ui->centerFrequency->setValueRange(7, BLADERF_FREQUENCY_MIN_XB200/1000, BLADERF_FREQUENCY_MAX/1000);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->centerFrequency->setValueRange(7, BLADERF_FREQUENCY_MIN/1000, BLADERF_FREQUENCY_MAX/1000);
|
|
|
|
}
|
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_startStop_toggled(bool checked)
|
2016-05-11 17:35:16 -04:00
|
|
|
{
|
|
|
|
if (checked)
|
|
|
|
{
|
2016-05-15 20:14:36 -04:00
|
|
|
if (m_deviceAPI->initAcquisition())
|
2016-05-11 17:35:16 -04:00
|
|
|
{
|
2016-05-15 20:14:36 -04:00
|
|
|
m_deviceAPI->startAcquisition();
|
2016-11-28 19:09:06 -05:00
|
|
|
DSPEngine::instance()->startAudioOutput();
|
2016-05-11 17:35:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-05-15 20:14:36 -04:00
|
|
|
m_deviceAPI->stopAcquisition();
|
2016-11-28 19:09:06 -05:00
|
|
|
DSPEngine::instance()->stopAudioOutput();
|
2016-05-11 17:35:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::on_record_toggled(bool checked)
|
2016-05-12 04:31:57 -04:00
|
|
|
{
|
|
|
|
if (checked)
|
|
|
|
{
|
|
|
|
ui->record->setStyleSheet("QToolButton { background-color : red; }");
|
|
|
|
m_fileSink->startRecording();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->record->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
|
|
m_fileSink->stopRecording();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::updateHardware()
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2015-08-18 19:45:06 -04:00
|
|
|
qDebug() << "BladerfGui::updateHardware";
|
2015-08-17 02:29:34 -04:00
|
|
|
BladerfInput::MsgConfigureBladerf* message = BladerfInput::MsgConfigureBladerf::create( m_settings);
|
|
|
|
m_sampleSource->getInputMessageQueue()->push(message);
|
2015-06-06 21:30:28 -04:00
|
|
|
m_updateTimer.stop();
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
void BladerfInputGui::updateStatus()
|
2016-05-11 17:35:16 -04:00
|
|
|
{
|
2016-05-15 20:14:36 -04:00
|
|
|
int state = m_deviceAPI->state();
|
2016-05-11 17:35:16 -04:00
|
|
|
|
|
|
|
if(m_lastEngineState != state)
|
|
|
|
{
|
|
|
|
switch(state)
|
|
|
|
{
|
2016-10-03 12:29:05 -04:00
|
|
|
case DSPDeviceSourceEngine::StNotStarted:
|
2016-05-11 17:35:16 -04:00
|
|
|
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
|
|
break;
|
2016-10-03 12:29:05 -04:00
|
|
|
case DSPDeviceSourceEngine::StIdle:
|
2016-05-11 17:35:16 -04:00
|
|
|
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
|
|
|
break;
|
2016-10-03 12:29:05 -04:00
|
|
|
case DSPDeviceSourceEngine::StRunning:
|
2016-05-11 17:35:16 -04:00
|
|
|
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
|
|
|
break;
|
2016-10-03 12:29:05 -04:00
|
|
|
case DSPDeviceSourceEngine::StError:
|
2016-05-11 17:35:16 -04:00
|
|
|
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
2016-05-15 20:14:36 -04:00
|
|
|
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
2016-05-11 17:35:16 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_lastEngineState = state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 20:14:31 -05:00
|
|
|
unsigned int BladerfInputGui::getXb200Index(bool xb_200, bladerf_xb200_path xb200Path, bladerf_xb200_filter xb200Filter)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
if (xb_200)
|
|
|
|
{
|
|
|
|
if (xb200Path == BLADERF_XB200_BYPASS)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (xb200Filter == BLADERF_XB200_AUTO_1DB)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
else if (xb200Filter == BLADERF_XB200_AUTO_3DB)
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
else if (xb200Filter == BLADERF_XB200_CUSTOM)
|
|
|
|
{
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
else if (xb200Filter == BLADERF_XB200_50M)
|
|
|
|
{
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
else if (xb200Filter == BLADERF_XB200_144M)
|
|
|
|
{
|
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
else if (xb200Filter == BLADERF_XB200_222M)
|
|
|
|
{
|
|
|
|
return 7;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-31 13:48:06 -04:00
|
|
|
unsigned int BladerfSampleRates::m_rates[] = {1536, 1600, 2000, 2304, 2400, 3072, 3200, 4608, 4800, 6144, 7680, 9216, 9600, 10752, 12288, 18432, 19200, 24576, 30720, 36864, 39936};
|
|
|
|
unsigned int BladerfSampleRates::m_nb_rates = 21;
|
2015-06-06 21:30:28 -04:00
|
|
|
|
|
|
|
unsigned int BladerfSampleRates::getRate(unsigned int rate_index)
|
|
|
|
{
|
|
|
|
if (rate_index < m_nb_rates)
|
|
|
|
{
|
|
|
|
return m_rates[rate_index];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return m_rates[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int BladerfSampleRates::getRateIndex(unsigned int rate)
|
|
|
|
{
|
|
|
|
for (unsigned int i=0; i < m_nb_rates; i++)
|
|
|
|
{
|
|
|
|
if (rate/1000 == m_rates[i])
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-29 11:31:44 -04:00
|
|
|
unsigned int BladerfSampleRates::getNbRates()
|
|
|
|
{
|
|
|
|
return BladerfSampleRates::m_nb_rates;
|
|
|
|
}
|
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
unsigned int BladerfBandwidths::m_halfbw[] = {750, 875, 1250, 1375, 1500, 1920, 2500, 2750, 3000, 3500, 4375, 5000, 6000, 7000, 10000, 14000};
|
|
|
|
unsigned int BladerfBandwidths::m_nb_halfbw = 16;
|
|
|
|
|
|
|
|
unsigned int BladerfBandwidths::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 BladerfBandwidths::getBandwidthIndex(unsigned int bandwidth)
|
|
|
|
{
|
|
|
|
for (unsigned int i=0; i < m_nb_halfbw; i++)
|
|
|
|
{
|
2015-06-09 02:18:32 -04:00
|
|
|
if (bandwidth/2000 == m_halfbw[i])
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-03-29 11:31:44 -04:00
|
|
|
|
|
|
|
unsigned int BladerfBandwidths::getNbBandwidths()
|
|
|
|
{
|
|
|
|
return BladerfBandwidths::m_nb_halfbw;
|
|
|
|
}
|
|
|
|
|