2015-12-06 13:47:55 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 F4EXB //
|
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-01-08 14:11:01 -05:00
|
|
|
#include "bfmdemodgui.h"
|
2016-10-02 07:18:07 -04:00
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
#include <device/devicesourceapi.h>
|
2016-10-02 15:52:39 -04:00
|
|
|
#include <dsp/downchannelizer.h>
|
2015-12-06 04:30:51 -05:00
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QDebug>
|
2015-12-13 19:36:13 -05:00
|
|
|
#include "boost/format.hpp"
|
|
|
|
#include <sstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <iomanip>
|
|
|
|
|
2017-01-08 14:11:01 -05:00
|
|
|
#include "dsp/threadedbasebandsamplesink.h"
|
2015-12-06 04:30:51 -05:00
|
|
|
#include "dsp/dspengine.h"
|
2015-12-06 13:47:55 -05:00
|
|
|
#include "dsp/spectrumvis.h"
|
2015-12-06 04:30:51 -05:00
|
|
|
#include "gui/glspectrum.h"
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
#include "util/db.h"
|
|
|
|
#include "gui/basicchannelsettingswidget.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
2017-01-08 14:11:01 -05:00
|
|
|
#include "bfmdemod.h"
|
|
|
|
#include "rdstmc.h"
|
2015-12-06 04:30:51 -05:00
|
|
|
#include "ui_bfmdemodgui.h"
|
|
|
|
|
2016-05-16 13:37:53 -04:00
|
|
|
const QString BFMDemodGUI::m_channelID = "sdrangel.channel.bfm";
|
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
const int BFMDemodGUI::m_rfBW[] = {
|
2015-12-06 13:47:55 -05:00
|
|
|
80000, 100000, 120000, 140000, 160000, 180000, 200000, 220000, 250000
|
2015-12-06 04:30:51 -05:00
|
|
|
};
|
|
|
|
|
2017-01-08 14:11:01 -05:00
|
|
|
//int requiredBW(int rfBW)
|
|
|
|
//{
|
|
|
|
// if (rfBW <= 48000)
|
|
|
|
// return 48000;
|
|
|
|
// else if (rfBW < 100000)
|
|
|
|
// return 96000;
|
|
|
|
// else
|
|
|
|
// return 384000;
|
|
|
|
//}
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
BFMDemodGUI* BFMDemodGUI::create(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI)
|
2015-12-06 04:30:51 -05:00
|
|
|
{
|
2016-05-15 21:21:21 -04:00
|
|
|
BFMDemodGUI* gui = new BFMDemodGUI(pluginAPI, deviceAPI);
|
2015-12-06 04:30:51 -05:00
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::destroy()
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::setName(const QString& name)
|
|
|
|
{
|
|
|
|
setObjectName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString BFMDemodGUI::getName() const
|
|
|
|
{
|
|
|
|
return objectName();
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 BFMDemodGUI::getCenterFrequency() const
|
|
|
|
{
|
|
|
|
return m_channelMarker.getCenterFrequency();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::setCenterFrequency(qint64 centerFrequency)
|
|
|
|
{
|
|
|
|
m_channelMarker.setCenterFrequency(centerFrequency);
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::resetToDefaults()
|
|
|
|
{
|
|
|
|
blockApplySettings(true);
|
|
|
|
|
|
|
|
ui->rfBW->setValue(4);
|
|
|
|
ui->afBW->setValue(3);
|
|
|
|
ui->volume->setValue(20);
|
|
|
|
ui->squelch->setValue(-40);
|
|
|
|
ui->deltaFrequency->setValue(0);
|
|
|
|
|
|
|
|
blockApplySettings(false);
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray BFMDemodGUI::serialize() const
|
|
|
|
{
|
|
|
|
SimpleSerializer s(1);
|
|
|
|
s.writeS32(1, m_channelMarker.getCenterFrequency());
|
|
|
|
s.writeS32(2, ui->rfBW->value());
|
|
|
|
s.writeS32(3, ui->afBW->value());
|
|
|
|
s.writeS32(4, ui->volume->value());
|
|
|
|
s.writeS32(5, ui->squelch->value());
|
|
|
|
s.writeU32(7, m_channelMarker.getColor().rgb());
|
2015-12-06 13:47:55 -05:00
|
|
|
s.writeBlob(8, ui->spectrumGUI->serialize());
|
2015-12-08 19:59:16 -05:00
|
|
|
s.writeBool(9, ui->audioStereo->isChecked());
|
2015-12-25 14:12:50 -05:00
|
|
|
s.writeBool(10, ui->lsbStereo->isChecked());
|
2015-12-06 04:30:51 -05:00
|
|
|
return s.final();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BFMDemodGUI::deserialize(const QByteArray& data)
|
|
|
|
{
|
|
|
|
SimpleDeserializer d(data);
|
|
|
|
|
|
|
|
if (!d.isValid())
|
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d.getVersion() == 1)
|
|
|
|
{
|
|
|
|
QByteArray bytetmp;
|
|
|
|
qint32 tmp;
|
2015-12-08 19:59:16 -05:00
|
|
|
bool booltmp;
|
2015-12-06 04:30:51 -05:00
|
|
|
|
|
|
|
blockApplySettings(true);
|
|
|
|
m_channelMarker.blockSignals(true);
|
|
|
|
|
|
|
|
d.readS32(1, &tmp, 0);
|
|
|
|
m_channelMarker.setCenterFrequency(tmp);
|
2015-12-07 20:23:58 -05:00
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
d.readS32(2, &tmp, 4);
|
|
|
|
ui->rfBW->setValue(tmp);
|
2015-12-07 20:23:58 -05:00
|
|
|
ui->rfBWText->setText(QString("%1 kHz").arg(m_rfBW[tmp] / 1000.0));
|
|
|
|
m_channelMarker.setBandwidth(m_rfBW[tmp]);
|
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
d.readS32(3, &tmp, 3);
|
|
|
|
ui->afBW->setValue(tmp);
|
2015-12-07 20:23:58 -05:00
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
d.readS32(4, &tmp, 20);
|
|
|
|
ui->volume->setValue(tmp);
|
2015-12-07 20:23:58 -05:00
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
d.readS32(5, &tmp, -40);
|
|
|
|
ui->squelch->setValue(tmp);
|
|
|
|
|
2015-12-08 21:05:23 -05:00
|
|
|
/*
|
2015-12-06 04:30:51 -05:00
|
|
|
if(d.readU32(7, &u32tmp))
|
|
|
|
{
|
|
|
|
m_channelMarker.setColor(u32tmp);
|
2015-12-08 21:05:23 -05:00
|
|
|
}*/
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2015-12-06 13:47:55 -05:00
|
|
|
d.readBlob(8, &bytetmp);
|
|
|
|
ui->spectrumGUI->deserialize(bytetmp);
|
|
|
|
|
2015-12-08 19:59:16 -05:00
|
|
|
d.readBool(9, &booltmp, false);
|
|
|
|
ui->audioStereo->setChecked(booltmp);
|
|
|
|
|
2015-12-25 14:12:50 -05:00
|
|
|
d.readBool(10, &booltmp, false);
|
|
|
|
ui->lsbStereo->setChecked(booltmp);
|
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
blockApplySettings(false);
|
|
|
|
m_channelMarker.blockSignals(false);
|
|
|
|
|
|
|
|
applySettings();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
bool BFMDemodGUI::handleMessage(const Message& message __attribute__((unused)))
|
2015-12-06 04:30:51 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::viewChanged()
|
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2017-05-17 17:52:10 -04:00
|
|
|
void BFMDemodGUI::on_deltaFrequency_changed(qint64 value)
|
2015-12-06 04:30:51 -05:00
|
|
|
{
|
2017-05-17 17:52:10 -04:00
|
|
|
m_channelMarker.setCenterFrequency(value);
|
2015-12-06 04:30:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::on_rfBW_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->rfBWText->setText(QString("%1 kHz").arg(m_rfBW[value] / 1000.0));
|
|
|
|
m_channelMarker.setBandwidth(m_rfBW[value]);
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::on_afBW_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->afBWText->setText(QString("%1 kHz").arg(value));
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::on_volume_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->volumeText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1));
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::on_squelch_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->squelchText->setText(QString("%1 dB").arg(value));
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2015-12-06 21:36:56 -05:00
|
|
|
void BFMDemodGUI::on_audioStereo_toggled(bool stereo)
|
|
|
|
{
|
|
|
|
if (!stereo)
|
|
|
|
{
|
|
|
|
ui->audioStereo->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
|
|
}
|
2015-12-07 02:55:22 -05:00
|
|
|
|
|
|
|
applySettings();
|
2015-12-06 21:36:56 -05:00
|
|
|
}
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void BFMDemodGUI::on_lsbStereo_toggled(bool lsb __attribute__((unused)))
|
2015-12-25 14:12:50 -05:00
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2015-12-08 18:04:46 -05:00
|
|
|
void BFMDemodGUI::on_showPilot_clicked()
|
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2015-12-08 22:13:13 -05:00
|
|
|
void BFMDemodGUI::on_rds_clicked()
|
|
|
|
{
|
2015-12-15 21:12:38 -05:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void BFMDemodGUI::on_clearData_clicked(bool checked __attribute__((unused)))
|
2015-12-15 21:12:38 -05:00
|
|
|
{
|
|
|
|
if (ui->rds->isChecked())
|
|
|
|
{
|
2015-12-14 20:55:12 -05:00
|
|
|
m_rdsParser.clearAllFields();
|
2015-12-15 21:12:38 -05:00
|
|
|
|
|
|
|
ui->g14ProgServiceNames->clear();
|
|
|
|
ui->g14MappedFrequencies->clear();
|
|
|
|
ui->g14AltFrequencies->clear();
|
|
|
|
|
2015-12-15 22:12:49 -05:00
|
|
|
ui->g00AltFrequenciesBox->setEnabled(false);
|
|
|
|
ui->g14MappedFrequencies->setEnabled(false);
|
|
|
|
ui->g14AltFrequencies->setEnabled(false);
|
|
|
|
|
2015-12-14 20:55:12 -05:00
|
|
|
rdsUpdate(true);
|
|
|
|
}
|
2015-12-15 21:12:38 -05:00
|
|
|
}
|
2015-12-14 20:55:12 -05:00
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void BFMDemodGUI::on_g14ProgServiceNames_currentIndexChanged(int _index)
|
2015-12-15 21:12:38 -05:00
|
|
|
{
|
2017-05-25 14:13:34 -04:00
|
|
|
uint32_t index = _index & 0x7FFFFFF;
|
|
|
|
|
2015-12-15 21:12:38 -05:00
|
|
|
if (index < m_g14ComboIndex.size())
|
|
|
|
{
|
|
|
|
unsigned int piKey = m_g14ComboIndex[index];
|
|
|
|
RDSParser::freqs_map_t::const_iterator mIt = m_rdsParser.m_g14_mapped_freqs.find(piKey);
|
|
|
|
|
|
|
|
if (mIt != m_rdsParser.m_g14_mapped_freqs.end())
|
|
|
|
{
|
|
|
|
ui->g14MappedFrequencies->clear();
|
|
|
|
RDSParser::freqs_set_t::iterator sIt = (mIt->second).begin();
|
|
|
|
const RDSParser::freqs_set_t::iterator sItEnd = (mIt->second).end();
|
|
|
|
|
2016-11-21 12:01:55 -05:00
|
|
|
for (; sIt != sItEnd; ++sIt)
|
2015-12-15 21:12:38 -05:00
|
|
|
{
|
|
|
|
std::ostringstream os;
|
|
|
|
os << std::fixed << std::showpoint << std::setprecision(2) << *sIt;
|
|
|
|
ui->g14MappedFrequencies->addItem(os.str().c_str());
|
|
|
|
}
|
2015-12-15 22:12:49 -05:00
|
|
|
|
|
|
|
ui->g14MappedFrequencies->setEnabled(ui->g14MappedFrequencies->count() > 0);
|
2015-12-15 21:12:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mIt = m_rdsParser.m_g14_alt_freqs.find(piKey);
|
|
|
|
|
|
|
|
if (mIt != m_rdsParser.m_g14_alt_freqs.end())
|
|
|
|
{
|
|
|
|
ui->g14AltFrequencies->clear();
|
|
|
|
RDSParser::freqs_set_t::iterator sIt = (mIt->second).begin();
|
|
|
|
const RDSParser::freqs_set_t::iterator sItEnd = (mIt->second).end();
|
|
|
|
|
2016-11-21 12:01:55 -05:00
|
|
|
for (; sIt != sItEnd; ++sIt)
|
2015-12-15 21:12:38 -05:00
|
|
|
{
|
|
|
|
std::ostringstream os;
|
|
|
|
os << std::fixed << std::showpoint << std::setprecision(2) << *sIt;
|
|
|
|
ui->g14AltFrequencies->addItem(os.str().c_str());
|
|
|
|
}
|
2015-12-15 22:12:49 -05:00
|
|
|
|
|
|
|
ui->g14AltFrequencies->setEnabled(ui->g14AltFrequencies->count() > 0);
|
2015-12-15 21:12:38 -05:00
|
|
|
}
|
|
|
|
}
|
2015-12-08 22:13:13 -05:00
|
|
|
}
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void BFMDemodGUI::on_g00AltFrequenciesBox_activated(int index __attribute__((unused)))
|
2015-12-15 22:12:49 -05:00
|
|
|
{
|
|
|
|
qint64 f = (qint64) ((ui->g00AltFrequenciesBox->currentText()).toDouble() * 1e6);
|
|
|
|
changeFrequency(f);
|
|
|
|
}
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void BFMDemodGUI::on_g14MappedFrequencies_activated(int index __attribute__((unused)))
|
2015-12-15 22:12:49 -05:00
|
|
|
{
|
|
|
|
qint64 f = (qint64) ((ui->g14MappedFrequencies->currentText()).toDouble() * 1e6);
|
|
|
|
changeFrequency(f);
|
|
|
|
}
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void BFMDemodGUI::on_g14AltFrequencies_activated(int index __attribute__((unused)))
|
2015-12-15 22:12:49 -05:00
|
|
|
{
|
|
|
|
qint64 f = (qint64) ((ui->g14AltFrequencies->currentText()).toDouble() * 1e6);
|
|
|
|
changeFrequency(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void BFMDemodGUI::onWidgetRolled(QWidget* widget __attribute__((unused)), bool rollDown __attribute__((unused)))
|
2015-12-06 04:30:51 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::onMenuDoubleClicked()
|
|
|
|
{
|
|
|
|
if(!m_basicSettingsShown)
|
|
|
|
{
|
|
|
|
m_basicSettingsShown = true;
|
|
|
|
BasicChannelSettingsWidget* bcsw = new BasicChannelSettingsWidget(&m_channelMarker, this);
|
|
|
|
bcsw->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
BFMDemodGUI::BFMDemodGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget* parent) :
|
2015-12-06 04:30:51 -05:00
|
|
|
RollupWidget(parent),
|
|
|
|
ui(new Ui::BFMDemodGUI),
|
|
|
|
m_pluginAPI(pluginAPI),
|
2016-05-15 21:21:21 -04:00
|
|
|
m_deviceAPI(deviceAPI),
|
2015-12-06 04:30:51 -05:00
|
|
|
m_channelMarker(this),
|
|
|
|
m_basicSettingsShown(false),
|
2015-12-13 19:36:13 -05:00
|
|
|
m_rdsTimerCount(0),
|
2015-12-08 03:25:46 -05:00
|
|
|
m_channelPowerDbAvg(20,0),
|
|
|
|
m_rate(625000)
|
2015-12-06 04:30:51 -05:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2017-05-17 17:52:10 -04:00
|
|
|
ui->deltaFrequencyLabel->setText(QString("%1f").arg(QChar(0x94, 0x03)));
|
|
|
|
ui->deltaFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
|
|
|
|
ui->deltaFrequency->setValueRange(false, 7, -9999999, 9999999);
|
2016-12-06 13:06:38 -05:00
|
|
|
ui->channelPowerMeter->setColorTheme(LevelMeterSignalDB::ColorGreenAndBlue);
|
2015-12-06 04:30:51 -05:00
|
|
|
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
|
|
|
connect(this, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool)));
|
|
|
|
connect(this, SIGNAL(menuDoubleClickEvent()), this, SLOT(onMenuDoubleClicked()));
|
|
|
|
|
2015-12-06 13:47:55 -05:00
|
|
|
m_spectrumVis = new SpectrumVis(ui->glSpectrum);
|
2015-12-13 03:45:29 -05:00
|
|
|
m_bfmDemod = new BFMDemod(m_spectrumVis, &m_rdsParser);
|
2016-10-02 15:52:39 -04:00
|
|
|
m_channelizer = new DownChannelizer(m_bfmDemod);
|
2016-10-03 09:55:16 -04:00
|
|
|
m_threadedChannelizer = new ThreadedBasebandSampleSink(m_channelizer, this);
|
2015-12-08 07:10:02 -05:00
|
|
|
connect(m_channelizer, SIGNAL(inputSampleRateChanged()), this, SLOT(channelSampleRateChanged()));
|
2016-05-16 04:05:09 -04:00
|
|
|
m_deviceAPI->addThreadedSink(m_threadedChannelizer);
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2015-12-08 03:25:46 -05:00
|
|
|
ui->glSpectrum->setCenterFrequency(m_rate / 4);
|
|
|
|
ui->glSpectrum->setSampleRate(m_rate / 2);
|
2015-12-06 13:47:55 -05:00
|
|
|
ui->glSpectrum->setDisplayWaterfall(false);
|
|
|
|
ui->glSpectrum->setDisplayMaxHold(false);
|
|
|
|
ui->glSpectrum->setSsbSpectrum(true);
|
|
|
|
m_spectrumVis->configure(m_spectrumVis->getInputMessageQueue(), 64, 10, FFTWindow::BlackmanHarris);
|
2015-12-06 04:30:51 -05:00
|
|
|
connect(&m_pluginAPI->getMainWindow()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick()));
|
|
|
|
|
|
|
|
//m_channelMarker = new ChannelMarker(this);
|
2015-12-08 21:05:23 -05:00
|
|
|
//m_channelMarker.setColor(Qt::blue);
|
|
|
|
m_channelMarker.setColor(QColor(80, 120, 228));
|
2015-12-06 04:30:51 -05:00
|
|
|
m_channelMarker.setBandwidth(12500);
|
|
|
|
m_channelMarker.setCenterFrequency(0);
|
|
|
|
m_channelMarker.setVisible(true);
|
2017-03-18 12:55:28 -04:00
|
|
|
setTitleColor(m_channelMarker.getColor());
|
2016-05-16 13:37:53 -04:00
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
connect(&m_channelMarker, SIGNAL(changed()), this, SLOT(viewChanged()));
|
2016-05-16 13:37:53 -04:00
|
|
|
|
|
|
|
m_deviceAPI->registerChannelInstance(m_channelID, this);
|
2016-05-16 04:05:09 -04:00
|
|
|
m_deviceAPI->addChannelMarker(&m_channelMarker);
|
|
|
|
m_deviceAPI->addRollupWidget(this);
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2015-12-06 13:47:55 -05:00
|
|
|
ui->spectrumGUI->setBuddies(m_spectrumVis->getInputMessageQueue(), m_spectrumVis, ui->glSpectrum);
|
|
|
|
|
2015-12-15 22:12:49 -05:00
|
|
|
ui->g00AltFrequenciesBox->setEnabled(false);
|
|
|
|
ui->g14MappedFrequencies->setEnabled(false);
|
|
|
|
ui->g14AltFrequencies->setEnabled(false);
|
|
|
|
|
2015-12-14 09:15:31 -05:00
|
|
|
rdsUpdateFixedFields();
|
|
|
|
rdsUpdate(true);
|
|
|
|
|
2015-12-06 04:30:51 -05:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
BFMDemodGUI::~BFMDemodGUI()
|
|
|
|
{
|
2016-05-16 13:37:53 -04:00
|
|
|
m_deviceAPI->removeChannelInstance(this);
|
2016-05-16 04:35:36 -04:00
|
|
|
m_deviceAPI->removeThreadedSink(m_threadedChannelizer);
|
2015-12-06 04:30:51 -05:00
|
|
|
delete m_threadedChannelizer;
|
|
|
|
delete m_channelizer;
|
2015-12-06 13:47:55 -05:00
|
|
|
delete m_bfmDemod;
|
2015-12-06 04:30:51 -05:00
|
|
|
//delete m_channelMarker;
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::blockApplySettings(bool block)
|
|
|
|
{
|
|
|
|
m_doApplySettings = !block;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::applySettings()
|
|
|
|
{
|
|
|
|
if (m_doApplySettings)
|
|
|
|
{
|
|
|
|
m_channelizer->configure(m_channelizer->getInputMessageQueue(),
|
|
|
|
requiredBW(m_rfBW[ui->rfBW->value()]), // TODO: this is where requested sample rate is specified
|
|
|
|
m_channelMarker.getCenterFrequency());
|
|
|
|
|
2017-05-17 17:52:10 -04:00
|
|
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
2015-12-06 04:30:51 -05:00
|
|
|
|
2015-12-06 13:47:55 -05:00
|
|
|
m_bfmDemod->configure(m_bfmDemod->getInputMessageQueue(),
|
2015-12-06 04:30:51 -05:00
|
|
|
m_rfBW[ui->rfBW->value()],
|
|
|
|
ui->afBW->value() * 1000.0,
|
|
|
|
ui->volume->value() / 10.0,
|
2015-12-07 02:55:22 -05:00
|
|
|
ui->squelch->value(),
|
2015-12-08 18:04:46 -05:00
|
|
|
ui->audioStereo->isChecked(),
|
2015-12-25 18:19:41 -05:00
|
|
|
ui->lsbStereo->isChecked(),
|
2015-12-08 22:13:13 -05:00
|
|
|
ui->showPilot->isChecked(),
|
|
|
|
ui->rds->isChecked());
|
2015-12-06 04:30:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::leaveEvent(QEvent*)
|
|
|
|
{
|
|
|
|
blockApplySettings(true);
|
|
|
|
m_channelMarker.setHighlighted(false);
|
|
|
|
blockApplySettings(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::enterEvent(QEvent*)
|
|
|
|
{
|
|
|
|
blockApplySettings(true);
|
|
|
|
m_channelMarker.setHighlighted(true);
|
|
|
|
blockApplySettings(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::tick()
|
|
|
|
{
|
2017-05-16 17:39:49 -04:00
|
|
|
double magsqAvg, magsqPeak;
|
2016-12-06 13:06:38 -05:00
|
|
|
int nbMagsqSamples;
|
|
|
|
m_bfmDemod->getMagSqLevels(magsqAvg, magsqPeak, nbMagsqSamples);
|
|
|
|
Real powDbAvg = CalcDb::dbPower(magsqAvg);
|
|
|
|
Real powDbPeak = CalcDb::dbPower(magsqPeak);
|
|
|
|
|
|
|
|
ui->channelPowerMeter->levelChanged(
|
|
|
|
(100.0f + powDbAvg) / 100.0f,
|
|
|
|
(100.0f + powDbPeak) / 100.0f,
|
|
|
|
nbMagsqSamples);
|
|
|
|
|
|
|
|
ui->channelPower->setText(QString::number(powDbAvg, 'f', 1));
|
|
|
|
|
|
|
|
// Real powDb = CalcDb::dbPower(m_bfmDemod->getMagSq());
|
|
|
|
// m_channelPowerDbAvg.feed(powDb);
|
|
|
|
// ui->channelPower->setText(QString::number(m_channelPowerDbAvg.average(), 'f', 1));
|
2015-12-06 21:36:56 -05:00
|
|
|
|
2015-12-08 18:04:46 -05:00
|
|
|
Real pilotPowDb = CalcDb::dbPower(m_bfmDemod->getPilotLevel());
|
|
|
|
QString pilotPowDbStr;
|
|
|
|
pilotPowDbStr.sprintf("%+02.1f", pilotPowDb);
|
|
|
|
ui->pilotPower->setText(pilotPowDbStr);
|
|
|
|
|
2015-12-06 21:36:56 -05:00
|
|
|
if (m_bfmDemod->getPilotLock())
|
|
|
|
{
|
|
|
|
if (ui->audioStereo->isChecked())
|
|
|
|
{
|
|
|
|
ui->audioStereo->setStyleSheet("QToolButton { background-color : green; }");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ui->audioStereo->isChecked())
|
|
|
|
{
|
|
|
|
ui->audioStereo->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-13 19:36:13 -05:00
|
|
|
if (ui->rds->isChecked() && (m_rdsTimerCount == 0))
|
|
|
|
{
|
2015-12-14 09:15:31 -05:00
|
|
|
rdsUpdate(false);
|
2015-12-13 19:36:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
m_rdsTimerCount = (m_rdsTimerCount + 1) % 25;
|
|
|
|
|
2015-12-06 20:18:31 -05:00
|
|
|
//qDebug() << "Pilot lock: " << m_bfmDemod->getPilotLock() << ":" << m_bfmDemod->getPilotLevel(); TODO: update a GUI item with status
|
2015-12-06 04:30:51 -05:00
|
|
|
}
|
2015-12-08 07:10:02 -05:00
|
|
|
|
|
|
|
void BFMDemodGUI::channelSampleRateChanged()
|
|
|
|
{
|
|
|
|
m_rate = m_bfmDemod->getSampleRate();
|
|
|
|
ui->glSpectrum->setCenterFrequency(m_rate / 4);
|
|
|
|
ui->glSpectrum->setSampleRate(m_rate / 2);
|
|
|
|
}
|
|
|
|
|
2015-12-14 09:15:31 -05:00
|
|
|
void BFMDemodGUI::rdsUpdateFixedFields()
|
|
|
|
{
|
|
|
|
ui->g00Label->setText(m_rdsParser.rds_group_acronym_tags[0].c_str());
|
2015-12-14 20:55:12 -05:00
|
|
|
ui->g01Label->setText(m_rdsParser.rds_group_acronym_tags[1].c_str());
|
|
|
|
ui->g02Label->setText(m_rdsParser.rds_group_acronym_tags[2].c_str());
|
2015-12-15 23:16:27 -05:00
|
|
|
ui->g03Label->setText(m_rdsParser.rds_group_acronym_tags[3].c_str());
|
2015-12-14 09:15:31 -05:00
|
|
|
ui->g04Label->setText(m_rdsParser.rds_group_acronym_tags[4].c_str());
|
|
|
|
//ui->g05Label->setText(m_rdsParser.rds_group_acronym_tags[5].c_str());
|
|
|
|
//ui->g06Label->setText(m_rdsParser.rds_group_acronym_tags[6].c_str());
|
|
|
|
//ui->g07Label->setText(m_rdsParser.rds_group_acronym_tags[7].c_str());
|
2015-12-14 20:55:12 -05:00
|
|
|
ui->g08Label->setText(m_rdsParser.rds_group_acronym_tags[8].c_str());
|
2015-12-15 22:43:29 -05:00
|
|
|
ui->g09Label->setText(m_rdsParser.rds_group_acronym_tags[9].c_str());
|
2015-12-15 21:12:38 -05:00
|
|
|
ui->g14Label->setText(m_rdsParser.rds_group_acronym_tags[14].c_str());
|
2015-12-14 09:15:31 -05:00
|
|
|
|
|
|
|
ui->g00CountLabel->setText(m_rdsParser.rds_group_acronym_tags[0].c_str());
|
|
|
|
ui->g01CountLabel->setText(m_rdsParser.rds_group_acronym_tags[1].c_str());
|
|
|
|
ui->g02CountLabel->setText(m_rdsParser.rds_group_acronym_tags[2].c_str());
|
|
|
|
ui->g03CountLabel->setText(m_rdsParser.rds_group_acronym_tags[3].c_str());
|
|
|
|
ui->g04CountLabel->setText(m_rdsParser.rds_group_acronym_tags[4].c_str());
|
|
|
|
ui->g05CountLabel->setText(m_rdsParser.rds_group_acronym_tags[5].c_str());
|
|
|
|
ui->g06CountLabel->setText(m_rdsParser.rds_group_acronym_tags[6].c_str());
|
|
|
|
ui->g07CountLabel->setText(m_rdsParser.rds_group_acronym_tags[7].c_str());
|
|
|
|
ui->g08CountLabel->setText(m_rdsParser.rds_group_acronym_tags[8].c_str());
|
|
|
|
ui->g09CountLabel->setText(m_rdsParser.rds_group_acronym_tags[9].c_str());
|
|
|
|
ui->g14CountLabel->setText(m_rdsParser.rds_group_acronym_tags[14].c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void BFMDemodGUI::rdsUpdate(bool force)
|
2015-12-13 19:36:13 -05:00
|
|
|
{
|
2015-12-13 21:01:44 -05:00
|
|
|
// Quality metrics
|
2015-12-13 22:01:41 -05:00
|
|
|
ui->demodQText->setText(QString("%1 %").arg(m_bfmDemod->getDemodQua(), 0, 'f', 0));
|
|
|
|
ui->decoderQText->setText(QString("%1 %").arg(m_bfmDemod->getDecoderQua(), 0, 'f', 0));
|
2015-12-13 21:01:44 -05:00
|
|
|
Real accDb = CalcDb::dbPower(std::fabs(m_bfmDemod->getDemodAcc()));
|
2015-12-13 22:01:41 -05:00
|
|
|
ui->accumText->setText(QString("%1 dB").arg(accDb, 0, 'f', 1));
|
|
|
|
ui->fclkText->setText(QString("%1 Hz").arg(m_bfmDemod->getDemodFclk(), 0, 'f', 2));
|
2015-12-13 21:01:44 -05:00
|
|
|
|
2015-12-14 20:55:12 -05:00
|
|
|
if (m_bfmDemod->getDecoderSynced()) {
|
|
|
|
ui->decoderQLabel->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
} else {
|
|
|
|
ui->decoderQLabel->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
|
2015-12-13 19:36:13 -05:00
|
|
|
// PI group
|
2015-12-14 09:15:31 -05:00
|
|
|
if (m_rdsParser.m_pi_updated || force)
|
2015-12-13 19:36:13 -05:00
|
|
|
{
|
|
|
|
ui->piLabel->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
ui->piCountText->setNum((int) m_rdsParser.m_pi_count);
|
|
|
|
QString pistring(str(boost::format("%04X") % m_rdsParser.m_pi_program_identification).c_str());
|
|
|
|
ui->piText->setText(pistring);
|
|
|
|
|
|
|
|
if (m_rdsParser.m_pi_traffic_program) {
|
|
|
|
ui->piTPIndicator->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
} else {
|
|
|
|
ui->piTPIndicator->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->piType->setText(QString(m_rdsParser.pty_table[m_rdsParser.m_pi_program_type].c_str()));
|
|
|
|
ui->piCoverage->setText(QString(m_rdsParser.coverage_area_codes[m_rdsParser.m_pi_area_coverage_index].c_str()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->piLabel->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
|
|
|
|
// G0 group
|
2015-12-14 09:15:31 -05:00
|
|
|
if (m_rdsParser.m_g0_updated || force)
|
2015-12-13 19:36:13 -05:00
|
|
|
{
|
|
|
|
ui->g00Label->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
ui->g00CountText->setNum((int) m_rdsParser.m_g0_count);
|
2015-12-20 20:35:57 -05:00
|
|
|
|
2015-12-22 22:27:25 -05:00
|
|
|
if (m_rdsParser.m_g0_psn_bitmap == 0b1111) {
|
2015-12-20 20:35:57 -05:00
|
|
|
ui->g00ProgServiceName->setText(QString(m_rdsParser.m_g0_program_service_name));
|
|
|
|
}
|
2015-12-13 19:36:13 -05:00
|
|
|
|
|
|
|
if (m_rdsParser.m_g0_traffic_announcement) {
|
|
|
|
ui->g00TrafficAnnouncement->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
} else {
|
|
|
|
ui->g00TrafficAnnouncement->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->g00MusicSpeech->setText(QString((m_rdsParser.m_g0_music_speech ? "Music" : "Speech")));
|
|
|
|
ui->g00MonoStereo->setText(QString((m_rdsParser.m_g0_mono_stereo ? "Mono" : "Stereo")));
|
|
|
|
|
|
|
|
if (m_rdsParser.m_g0_af_updated)
|
|
|
|
{
|
2015-12-15 02:54:13 -05:00
|
|
|
ui->g00AltFrequenciesBox->clear();
|
2015-12-13 19:36:13 -05:00
|
|
|
|
|
|
|
for (std::set<double>::iterator it = m_rdsParser.m_g0_alt_freq.begin(); it != m_rdsParser.m_g0_alt_freq.end(); ++it)
|
|
|
|
{
|
|
|
|
if (*it > 76.0)
|
|
|
|
{
|
2015-12-15 02:54:13 -05:00
|
|
|
std::ostringstream os;
|
|
|
|
os << std::fixed << std::showpoint << std::setprecision(2) << *it;
|
|
|
|
ui->g00AltFrequenciesBox->addItem(QString(os.str().c_str()));
|
2015-12-13 19:36:13 -05:00
|
|
|
}
|
|
|
|
}
|
2015-12-15 22:12:49 -05:00
|
|
|
|
|
|
|
ui->g00AltFrequenciesBox->setEnabled(ui->g00AltFrequenciesBox->count() > 0);
|
2015-12-13 19:36:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->g00Label->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
|
2015-12-14 20:55:12 -05:00
|
|
|
// G1 group
|
|
|
|
if (m_rdsParser.m_g1_updated || force)
|
|
|
|
{
|
|
|
|
ui->g01Label->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
ui->g01CountText->setNum((int) m_rdsParser.m_g1_count);
|
|
|
|
|
|
|
|
if ((m_rdsParser.m_g1_country_page_index >= 0) && (m_rdsParser.m_g1_country_index >= 0)) {
|
|
|
|
ui->g01CountryCode->setText(QString((m_rdsParser.pi_country_codes[m_rdsParser.m_g1_country_page_index][m_rdsParser.m_g1_country_index]).c_str()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_rdsParser.m_g1_language_index >= 0) {
|
|
|
|
ui->g01Language->setText(QString(m_rdsParser.language_codes[m_rdsParser.m_g1_language_index].c_str()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->g01DHM->setText(QString(str(boost::format("%id:%i:%i") % m_rdsParser.m_g1_pin_day % m_rdsParser.m_g1_pin_hour % m_rdsParser.m_g1_pin_minute).c_str()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->g01Label->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
|
|
|
|
// G2 group
|
|
|
|
if (m_rdsParser.m_g2_updated || force)
|
|
|
|
{
|
|
|
|
ui->g02Label->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
ui->g02CountText->setNum((int) m_rdsParser.m_g2_count);
|
|
|
|
ui->go2Text->setText(QString(m_rdsParser.m_g2_radiotext));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->g02Label->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
|
|
|
|
// G3 group
|
|
|
|
if (m_rdsParser.m_g3_updated || force)
|
|
|
|
{
|
2015-12-15 23:16:27 -05:00
|
|
|
ui->g03Label->setStyleSheet("QLabel { background-color : green; }");
|
2015-12-14 20:55:12 -05:00
|
|
|
ui->g03CountText->setNum((int) m_rdsParser.m_g3_count);
|
2015-12-15 23:16:27 -05:00
|
|
|
std::string g3str = str(boost::format("%02X%c %04X %04X") % m_rdsParser.m_g3_appGroup % (m_rdsParser.m_g3_groupB ? 'B' : 'A') % m_rdsParser.m_g3_message % m_rdsParser.m_g3_aid);
|
|
|
|
ui->g03Data->setText(QString(g3str.c_str()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->g03Label->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
2015-12-14 20:55:12 -05:00
|
|
|
}
|
|
|
|
|
2015-12-14 03:01:37 -05:00
|
|
|
// G4 group
|
2015-12-14 09:15:31 -05:00
|
|
|
if (m_rdsParser.m_g4_updated || force)
|
2015-12-14 03:01:37 -05:00
|
|
|
{
|
|
|
|
ui->g04Label->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
ui->g04CountText->setNum((int) m_rdsParser.m_g4_count);
|
|
|
|
std::string time = str(boost::format("%02i.%02i.%4i, %02i:%02i (%+.1fh)")\
|
|
|
|
% m_rdsParser.m_g4_day % m_rdsParser.m_g4_month % (1900 + m_rdsParser.m_g4_year) % m_rdsParser.m_g4_hours % m_rdsParser.m_g4_minutes % m_rdsParser.m_g4_local_time_offset);
|
|
|
|
ui->g04Time->setText(QString(time.c_str()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->g04Label->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
2015-12-13 19:36:13 -05:00
|
|
|
|
2015-12-14 20:55:12 -05:00
|
|
|
// G5 group
|
|
|
|
if (m_rdsParser.m_g5_updated || force)
|
|
|
|
{
|
|
|
|
ui->g05CountText->setNum((int) m_rdsParser.m_g5_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
// G6 group
|
|
|
|
if (m_rdsParser.m_g6_updated || force)
|
|
|
|
{
|
|
|
|
ui->g06CountText->setNum((int) m_rdsParser.m_g6_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
// G7 group
|
|
|
|
if (m_rdsParser.m_g7_updated || force)
|
|
|
|
{
|
|
|
|
ui->g07CountText->setNum((int) m_rdsParser.m_g7_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
// G8 group
|
|
|
|
if (m_rdsParser.m_g8_updated || force)
|
|
|
|
{
|
|
|
|
ui->g08Label->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
ui->g08CountText->setNum((int) m_rdsParser.m_g8_count);
|
|
|
|
|
|
|
|
std::ostringstream os;
|
|
|
|
os << (m_rdsParser.m_g8_sign ? "-" : "+") << m_rdsParser.m_g8_extent + 1;
|
|
|
|
ui->g08Extent->setText(QString(os.str().c_str()));
|
|
|
|
int event_line = RDSTMC::get_tmc_event_code_index(m_rdsParser.m_g8_event, 1);
|
|
|
|
ui->g08TMCEvent->setText(QString(RDSTMC::get_tmc_events(event_line, 1).c_str()));
|
2015-12-15 02:54:13 -05:00
|
|
|
QString pistring(str(boost::format("%04X") % m_rdsParser.m_g8_location).c_str());
|
|
|
|
ui->g08Location->setText(pistring);
|
2015-12-14 20:55:12 -05:00
|
|
|
|
|
|
|
if (m_rdsParser.m_g8_label_index >= 0) {
|
|
|
|
ui->g08Description->setText(QString(m_rdsParser.label_descriptions[m_rdsParser.m_g8_label_index].c_str()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->g08Content->setNum(m_rdsParser.m_g8_content);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->g08Label->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
|
|
|
|
// G9 group
|
|
|
|
if (m_rdsParser.m_g9_updated || force)
|
|
|
|
{
|
2015-12-15 22:43:29 -05:00
|
|
|
ui->g09Label->setStyleSheet("QLabel { background-color : green; }");
|
2015-12-14 20:55:12 -05:00
|
|
|
ui->g09CountText->setNum((int) m_rdsParser.m_g9_count);
|
2015-12-15 22:43:29 -05:00
|
|
|
std::string g9str = str(boost::format("%02X %04X %04X %02X %04X") % m_rdsParser.m_g9_varA % m_rdsParser.m_g9_cA % m_rdsParser.m_g9_dA % m_rdsParser.m_g9_varB % m_rdsParser.m_g9_dB);
|
|
|
|
ui->g09Data->setText(QString(g9str.c_str()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->g09Label->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
2015-12-14 20:55:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// G14 group
|
|
|
|
if (m_rdsParser.m_g14_updated || force)
|
|
|
|
{
|
|
|
|
ui->g14CountText->setNum((int) m_rdsParser.m_g14_count);
|
2015-12-15 21:12:38 -05:00
|
|
|
|
|
|
|
if (m_rdsParser.m_g14_data_available)
|
|
|
|
{
|
|
|
|
ui->g14Label->setStyleSheet("QLabel { background-color : green; }");
|
|
|
|
m_g14ComboIndex.clear();
|
|
|
|
ui->g14ProgServiceNames->clear();
|
|
|
|
|
|
|
|
RDSParser::psns_map_t::iterator it = m_rdsParser.m_g14_program_service_names.begin();
|
|
|
|
const RDSParser::psns_map_t::iterator itEnd = m_rdsParser.m_g14_program_service_names.end();
|
|
|
|
int i = 0;
|
|
|
|
|
2016-11-21 12:01:55 -05:00
|
|
|
for (; it != itEnd; ++it, i++)
|
2015-12-15 21:12:38 -05:00
|
|
|
{
|
|
|
|
m_g14ComboIndex.push_back(it->first);
|
|
|
|
QString pistring(str(boost::format("%04X:%s") % it->first % it->second).c_str());
|
|
|
|
ui->g14ProgServiceNames->addItem(pistring);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->g14Label->setStyleSheet("QLabel { background:rgb(79,79,79); }");
|
|
|
|
}
|
2015-12-14 20:55:12 -05:00
|
|
|
}
|
|
|
|
|
2015-12-13 19:36:13 -05:00
|
|
|
m_rdsParser.clearUpdateFlags();
|
|
|
|
}
|
2015-12-15 22:12:49 -05:00
|
|
|
|
|
|
|
void BFMDemodGUI::changeFrequency(qint64 f)
|
|
|
|
{
|
|
|
|
qint64 df = m_channelMarker.getCenterFrequency();
|
|
|
|
qDebug() << "BFMDemodGUI::changeFrequency: " << f - df;
|
|
|
|
// TODO: in the future it should be able to set the center frequency of the sample source this channel plugin is linked to
|
|
|
|
}
|