1. Better (and faster) logic for Tune button ON/OFF actions.

2. Pink highlighting for empty MyCall and MyGrid fields on Setup screen.
3. Working on better diagnostics for users trying to set up CAT control.  

(More progress still needed, on rig control.)


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3219 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2013-04-25 17:30:20 +00:00
parent 971ea3a8b3
commit 1f2ed5d8d8
3 changed files with 35 additions and 21 deletions
+4 -4
View File
@@ -2589,10 +2589,8 @@ void MainWindow::on_actionTx2QSO_triggered(bool checked)
void MainWindow::on_tuneButton_clicked()
{
if(m_tune) {
m_tune=false;
soundOutThread.setTune(m_tune);
nc1=1; //disable the countdown timer
tuneButtonTimer->start(1000);
tuneButtonTimer->start(250);
} else {
m_tune=true;
m_sent73=false;
@@ -2605,7 +2603,8 @@ void MainWindow::on_tuneButton_clicked()
void MainWindow::on_stopTxButton_clicked() //Stop Tx
{
if(m_tune) {
on_tuneButton_clicked();
m_tune=false;
soundOutThread.setTune(m_tune);
}
if(m_auto) on_autoButton_clicked();
btxok=false;
@@ -2631,6 +2630,7 @@ void MainWindow::rigOpen()
rig->setConf("dtr_state","OFF");
}
rig->open();
rig->getVFO();
m_bRigOpen=true;
}
catch (const RigException &Ex) {