From 7db0b2f8932d0342fdff579eb75df06e7296010f Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 5 Nov 2013 20:10:34 +0000 Subject: [PATCH] Re-connect the actual calls to set570()! git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@3598 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- map65.iss | 2 +- widegraph.cpp | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 612bf4790..58ae2bcb9 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1,4 +1,4 @@ -//------------------------------------------------------------- MainWindow +//-------------------------------------------------------------- MainWindow #include "mainwindow.h" #include "ui_mainwindow.h" #include "devsetup.h" diff --git a/map65.iss b/map65.iss index d87c75c10..b7ff5f9d6 100644 --- a/map65.iss +++ b/map65.iss @@ -1,6 +1,6 @@ [Setup] AppName=MAP65 -AppVerName=MAP65 Version 2.5 r3595 +AppVerName=MAP65 Version 2.5 r3597 AppCopyright=Copyright (C) 2001-2013 by Joe Taylor, K1JT DefaultDirName=c:\MAP65 DefaultGroupName=MAP65 diff --git a/widegraph.cpp b/widegraph.cpp index f13413bfb..cfe73a8a9 100644 --- a/widegraph.cpp +++ b/widegraph.cpp @@ -335,10 +335,10 @@ void WideGraph::on_cbLockTxRx_stateChanged(int n) void WideGraph::rx570() { double f=m_mult570*(1.0+0.000001*m_cal570)*m_dForceCenterFreq; - qDebug() << "Set Rx Freq" << f; +// qDebug() << "Set Rx Freq" << f; #ifdef WIN32 -// int iret=set570(f); - int iret=0; + int iret=set570(f); +// int iret=0; if(iret != 0) { QMessageBox mb; @@ -356,10 +356,10 @@ void WideGraph::tx570() double f=ui->widePlot->txFreq(); double f1=m_mult570Tx*(1.0+0.000001*m_cal570) * f; int nHz = 1000000.0*f1 + 0.5; - qDebug() << "Set Tx Freq" << f1 << nHz; +// qDebug() << "Set Tx Freq" << f1 << nHz; #ifdef WIN32 -// int iret=set570(f1); - int iret=0; + int iret=set570(f1); +// int iret=0; if(iret != 0) { QMessageBox mb;