1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
|
/***************************************************************************
* This file is part of Qthid.
*
* Copyright (C) 2010 Howard Long, G6LVB
* Copyright (C) 2011 Mario Lorenz, DL5MLO
* Copyright (C) 2011-2012 Alexandru Csete, OZ9AEC
*
*
* Qthid 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, either version 3 of the License, or
* (at your option) any later version.
*
* Qthid 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with Qthid. If not, see <http://www.gnu.org/licenses/>.
*
***************************************************************************/
#include <QtGui>
#include <QtDebug>
#include <QMessageBox>
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "freqctrl.h"
#include "firmware.h"
#include "hidapi.h"
#include "fcd.h"
/* Flags used to select which settings to read so that we avoid polling all settings all the time */
#define DEV_SET_RFF (1 << 0)
#define DEV_SET_LNA (1 << 1)
#define DEV_SET_MIX (1 << 2)
#define DEV_SET_IFF (1 << 3)
#define DEV_SET_IFG (1 << 4)
#define DEV_SET_BIAS (1 << 5)
#define DEV_SET_ALL (DEV_SET_RFF | DEV_SET_LNA | DEV_SET_MIX | DEV_SET_IFF | DEV_SET_IFG | DEV_SET_BIAS)
#define DEV_SET_RF (DEV_SET_RFF | DEV_SET_LNA)
#define DEV_SET_IF (DEV_SET_IFF | DEV_SET_IFG)
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow),
prevMode(FCD_MODE_NONE)
{
QSettings settings;
ui->setupUi(this);
setWindowTitle(tr("Qthid %1").arg(VERSION));
/* frequency correction */
ui->spinBoxCorr->setValue(settings.value("Correction","0").toInt());
/* LNB ofset */
lnbOffset = settings.value("LnbOffset","0").toInt(); // Stored as Hz
ui->spinBoxLnb->setValue(lnbOffset/1.0e6); // Shown as MHz
/* frequency controller */
if (lnbOffset < -150e3)
ui->freqCtrl->Setup(11, 0, 2050e6+lnbOffset, 1, UNITS_MHZ);
else
ui->freqCtrl->Setup(11, 150e3+lnbOffset, 2050e6+lnbOffset, 1, UNITS_MHZ);
ui->freqCtrl->SetFrequency(settings.value("Frequency", 144800000).toInt()+lnbOffset);
/* FCD status label */
fcdStatus = new QLabel(tr("FCD status..."), this);
fcdStatus->setAlignment(Qt::AlignRight);
fcdStatus->setToolTip(tr("Funcube Dongle status can be No FCD, Application or Bootloader"));
ui->statusBar->addPermanentWidget(fcdStatus);
fwDialog = new CFirmware(this);
connect(fwDialog, SIGNAL(finished(int)), this, SLOT(fwDialogFinished(int)));
enableControls(); // will also readDevice() due to mode change
//setUnifiedTitleAndToolBarOnMac(true);
/* connect signals & slots */
connect(ui->freqCtrl, SIGNAL(NewFrequency(qint64)), this, SLOT(setNewFrequency(qint64)));
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(enableControls()));
timer->start(1000);
}
MainWindow::~MainWindow()
{
QSettings settings;
timer->stop();
delete timer;
settings.setValue("Frequency",ui->freqCtrl->GetFrequency()-lnbOffset);
settings.setValue("Correction",ui->spinBoxCorr->value());
settings.setValue("LnbOffset", lnbOffset);
/** TODO: LNA **/
/** TODO: mixer gain **/
/** TODO: Bias T **/
/** TODO: RF Filter **/
/** TODO: IF Filter **/
/** TODO: IF gain **/
delete ui;
}
/** \brief Read all parameters from FCD and update GUI. */
void MainWindow::readDevice(quint16 flags)
{
FCD_MODE_ENUM fme;
tuner_rf_filter_t rf_filt;
tuner_if_filter_t if_filt;
char enabled;
unsigned char value;
bool error = false;
/* Note: No need to block toggled() signals for check-buttons since we
use the clicked() signals to catch actions.
*/
/* Bias T */
if (flags & DEV_SET_BIAS)
{
fme = fcdAppGetBiasTee(&enabled);
if (fme == FCD_MODE_APP)
{
ui->biasTeeButton->setChecked(enabled ? true : false);
}
else
{
qDebug() << __func__ << ": Error reading Bias T setting.";
error = true;
}
}
/* LNA */
if (flags & DEV_SET_LNA)
{
fme = fcdAppGetLna(&enabled);
if (fme == FCD_MODE_APP)
{
ui->lnaButton->setChecked(enabled ? true : false);
}
else
{
qDebug() << __func__ << ": Error reading LNA setting.";
error = true;
}
}
/* Mixer gain */
if (flags & DEV_SET_MIX)
{
fme = fcdAppGetMixerGain(&enabled);
if (fme == FCD_MODE_APP)
{
ui->mixerButton->setChecked(enabled ? true : false);
}
else
{
qDebug() << __func__ << ": Error reading mixer setting.";
error = true;
}
}
/* RF filter */
if (flags & DEV_SET_RFF)
{
fme = fcdAppGetRfFilter(&rf_filt);
if (fme == FCD_MODE_APP)
{
ui->rfFilterComboBox->setCurrentIndex(rf_filt);
}
else
{
qDebug() << __func__ << ": Error reading RF filter setting.";
error = true;
}
}
/* IF filter */
if (flags & DEV_SET_IFF)
{
fme = fcdAppGetIfFilter(&if_filt);
if (fme == FCD_MODE_APP)
{
ui->ifFilterComboBox->setCurrentIndex(if_filt);
}
else
{
qDebug() << __func__ << ": Error reading IF filter setting.";
error = true;
}
}
/* IF gain */
if (flags & DEV_SET_IFG)
{
fme = fcdAppGetIfGain(&value);
if (fme == FCD_MODE_APP)
{
ui->ifGainSpinBox->setValue(value);
}
else
{
qDebug() << __func__ << ": Error reading IF gain.";
error = true;
}
}
/* push a message to the status bar */
if (error)
{
qDebug() << "There were errors while reading settings from FCD";
ui->statusBar->showMessage(tr("Error reading settings from FCD"), 4000);
}
else
{
qDebug() << "Successfully read settings from FCD; flags:" << flags;
}
}
/** \brief Convert a string to double */
double MainWindow::StrToDouble(QString s)
{
int i;
QString s2="";
for (i=0;i<s.length();i++)
{
QChar c=s[i];
if (c>='0' and c<='9')
{
s2+=c;
}
}
s2=s2.left(10);
return s2.toDouble();
}
/** \brief Eanble/disable controls depending on FCD mode.
*
* This function reads the FCD mode and enables or disables the UI controls accordingly.
* In case a mode change is detected to FCD_MODE_APP, readDevice() is called to read the
* settings fromt he FCD.
* \todo Combo boxes.
*/
void MainWindow::enableControls()
{
FCD_MODE_ENUM fme = FCD_MODE_NONE;
char fwVerStr[6];
bool convOk = false;
float fwVer = 0.0;
fme = fcdGetMode();
switch (fme)
{
case FCD_MODE_APP:
fcdGetFwVerStr(fwVerStr);
fcdStatus->setText(tr("FCD is active (%1)").arg(QString(fwVerStr)));
/* convert version string to float */
fwVer = QString(fwVerStr).toFloat(&convOk);
break;
case FCD_MODE_BL:
fcdStatus->setText(tr("FCD bootloader"));
break;
case FCD_MODE_NONE:
fcdStatus->setText(tr("No FCD detected"));
break;
}
ui->freqCtrl->setEnabled(fme==FCD_MODE_APP);
/** Bias T functionality available since FW 18h for FCD Pro and 20.01 for Pro+ */
ui->biasTeeButton->setEnabled((fme == FCD_MODE_APP) && (fwVer > 18.07));
ui->lnaButton->setEnabled(fme == FCD_MODE_APP);
ui->mixerButton->setEnabled(fme == FCD_MODE_APP);
ui->ifGainSpinBox->setEnabled(fme == FCD_MODE_APP);
ui->spinBoxLnb->setEnabled(fme == FCD_MODE_APP);
ui->spinBoxCorr->setEnabled(fme == FCD_MODE_APP);
ui->actionDefault->setEnabled(fme==FCD_MODE_APP);
/* manage FCD mode transitions */
if (fme != prevMode) {
qDebug() << "FCD mode change:" << prevMode << "->" << fme;
ui->statusBar->showMessage(tr("FCD mode change detected"), 3000);
if (fme == FCD_MODE_APP) {
/* if previous mode was different read settings from device */
readDevice(DEV_SET_ALL);
/* Set frequency since FCD does not remember anything */
setNewFrequency(ui->freqCtrl->GetFrequency());
}
}
prevMode = fme;
}
/*! \brief Slot for receiving frequency change signals.
* \param[in] freq The new frequency.
*
* This slot is connected to the CFreqCtrl::NewFrequency() signal and is used
* to set new RF frequency.
*/
void MainWindow::setNewFrequency(qint64 freq)
{
FCD_MODE_ENUM fme;
unsigned int uFreq, rFreq;
double d = (double) (freq-lnbOffset);
d *= 1.0 + ui->spinBoxCorr->value()/1000000.0;
uFreq = (unsigned int) d;
fme = fcdAppSetFreq(uFreq, &rFreq);
qDebug() << "Set new frequency";
qDebug() << " Display:" << freq << "Hz";
qDebug() << " LNB offset:" << lnbOffset << "Hz";
qDebug() << " FCD set:" << uFreq << "Hz";
qDebug() << " FCD get:" << rFreq << "Hz";
if ((fme != FCD_MODE_APP) || (uFreq != rFreq))
{
ui->statusBar->showMessage(tr("Failed to set frequency"), 2000);
qDebug() << "Error in" << __func__ << "set:" << uFreq << "read:" << rFreq;
}
readDevice(DEV_SET_RFF);
}
/** \brief Bias T button ON/OFF
*
* This slot is called when the user licks on the Bias T button. It is used
* to switch the bias tee power ON and OFF.
* isChecked() = true => power ON
* isChecked() = false => power OFF
*/
void MainWindow::on_biasTeeButton_clicked()
{
char enabled = ui->biasTeeButton->isChecked();
FCD_MODE_ENUM fme = fcdAppSetBiasTee(enabled);
if (fme != FCD_MODE_APP)
{
qDebug() << __func__ << ": Failed to set bias T to" << enabled;
ui->statusBar->showMessage(tr("Failed to set bias T"), 5000);
}
}
/** \brief LNA button ON/OFF
*
* This slot is called when the user clicks on the LNA button. It is used
* to switch the LNA ON and OFF.
* isChecked() = true => power ON
* isChecked() = false => power OFF
*/
void MainWindow::on_lnaButton_clicked()
{
char enabled = ui->lnaButton->isChecked();
FCD_MODE_ENUM fme = fcdAppSetLna(enabled);
if (fme != FCD_MODE_APP)
{
qDebug() << __func__ << ": Failed to set LNA to" << enabled;
ui->statusBar->showMessage(tr("Failed to set LNA"), 5000);
}
}
/** \brief Mixer gain button ON/OFF
*
* This slot is called when the user clicks on the Mixer gain button. It is used
* to switch the mixer gain ON and OFF.
* isChecked() = true => power ON
* isChecked() = false => power OFF
*/
void MainWindow::on_mixerButton_clicked()
{
char enabled = ui->mixerButton->isChecked();
FCD_MODE_ENUM fme = fcdAppSetMixerGain(enabled);
if (fme != FCD_MODE_APP)
{
qDebug() << __func__ << ": Failed to set mixer gain to" << enabled;
ui->statusBar->showMessage(tr("Failed to set mixer gain"), 5000);
}
}
/** \brief IF gain changed
* \param gain The new IF gain between 0 and 59 dB.
*/
void MainWindow::on_ifGainSpinBox_valueChanged(int gain)
{
if ((gain <= 59) && (gain >= 0))
{
unsigned char gc = (unsigned char) gain;
FCD_MODE_ENUM fme = fcdAppSetIfGain(gc);
if (fme != FCD_MODE_APP)
{
qDebug() << __func__ << ": Failed to set IF gain to" << gc << "dB.";
ui->statusBar->showMessage(tr("Failed to set IF gain"), 5000);
}
}
}
/** \brief Frequency correction changed.
* \param n New correction value in ppm.
*
* This slot is called when the value of the frequency correction spin button
* is changed.
*/
void MainWindow::on_spinBoxCorr_valueChanged(int n)
{
FCD_MODE_ENUM fme;
unsigned int uFreq, rFreq;
double d = (double) (ui->freqCtrl->GetFrequency()-lnbOffset);
d *= 1.0 + n/1000000.0;
uFreq = (unsigned int) d;
fme = fcdAppSetFreq(uFreq, &rFreq);
if ((fme != FCD_MODE_APP) || (uFreq != rFreq))
{
ui->statusBar->showMessage(tr("Failed to set frequency"), 2000);
qDebug() << "Error in" << __func__ << "set:" << uFreq << "read:" << rFreq;
}
}
/** \brief LNB LO frequency changed.
* \param freq_mhz The new frequency in MHz.
*
* This slot is called when the user changes the LNB LO frequency. Only the
* display frequency is adjusted; the FCD frequency will stay unchanged.
*/
void MainWindow::on_spinBoxLnb_valueChanged(double freq_mhz)
{
/* calculate current RF frequency */
qint64 rf_freq = ui->freqCtrl->GetFrequency() - lnbOffset;
lnbOffset = qint64(freq_mhz*1e6);
qDebug() << "New LNB LO:" << lnbOffset << "Hz";
/* Show updated frequency in display */
ui->freqCtrl->SetFrequency(lnbOffset + rf_freq);
}
/** \brief Action: Load FCD settigns from file. */
void MainWindow::on_actionLoad_triggered()
{
qDebug() << "MainWindow::on_actionLoad_triggered() not implemented";
}
/** \brief Action: Save FCD settings to file. */
void MainWindow::on_actionSave_triggered()
{
qDebug() << "MainWindow::on_actionSave_triggered() not implemented";
}
/** \brief Action: Open firmware tools. */
void MainWindow::on_actionFirmware_triggered()
{
//fwDialog = new CFirmware(this);
//connect(fwDialog, SIGNAL(finished(int)), this, SLOT(fwDialogFinished(int)));
/* set FCD in bootloader mode */
timer->stop();
fcdAppReset();
timer->start(1000);
fwDialog->show();
}
/*! \brief Slot: Firmware dialog finished. */
void MainWindow::fwDialogFinished(int result)
{
Q_UNUSED(result);
qDebug() << "FIXME: Implement" << __func__;
#if 0
qDebug() << "FW dialog finished. Result:" << result;
//disconnect(fwDialog, SIGNAL(finished(int)), this, SLOT(fwDialogFinished(int)));
//delete fwDialog;
fwDialog->hide();
/* set FCD back to application mode */
timer->stop();
fcdBlReset();
timer->start(1000);
#endif
}
/*! \brief Action: Reset to defaulrts. */
void MainWindow::on_actionDefault_triggered()
{
QMessageBox::StandardButton but = QMessageBox::question(this,
tr("Reset FCD"),
tr("Reset FCD to default settings?"),
QMessageBox::Yes | QMessageBox::No,
QMessageBox::No);
if (but == QMessageBox::No)
return;
qDebug() << "FIXME: Implement" << __func__;
//readDevice();
//ui->statusBar->showMessage(tr("FCD has been reset"), 5000);
}
/** \brief Action: About Qthid
*
* This slot is called when the user activates the
* Help|About menu item (or Qthid|About on Mac)
*/
void MainWindow::on_actionAbout_triggered()
{
QMessageBox::about(this, tr("About Qthid"),
tr("<p>This is qthid %1</p>"
"<p>Qthid is a simple controller application for the Funcube Dongle Pro+"
"</p>"
"<p>Qthid can be used to set and read the various such as frequency, bias T, "
"LNA, and whatever else is supported by the firmware.</p>"
"<p>Qthid is written using the Qt toolkit (see About Qt) and is available "
"for Linux, Mac and Windows. You can download the latest version from the "
"<a href='http://www.oz9aec.net/index.php/funcube-dongle/qthid-fcd-controller'>Qthid website</a>."
"</p>"
"<p>"
"<a href='http://funcubedongle.com/'>Funcube Dongle website</a><br/>"
"<a href='http://funcube.org.uk/'>Information about Funcube</a>"
"</p>").arg(VERSION));
}
/** \brief Action: About Qt
*
* This slot is called when the user activates the
* Help|About Qt menu item (or Qthid|About Qt on Mac)
*/
void MainWindow::on_actionAboutQt_triggered()
{
QMessageBox::aboutQt(this, tr("About Qt"));
}
|