diff --git a/wfmain.cpp b/wfmain.cpp index d39be0d..a551770 100644 --- a/wfmain.cpp +++ b/wfmain.cpp @@ -26,6 +26,7 @@ wfmain::wfmain(const QString serialPortCL, const QString hostCL, const QString s cal = new calibrationWindow(); rpt = new repeaterSetup(); sat = new satelliteSetup(); + trxadj = new transceiverAdjustments(); srv = new udpServerSetup(); connect(this, SIGNAL(sendServerConfig(SERVERCONFIG)), srv, SLOT(receiveServerConfig(SERVERCONFIG))); @@ -4993,8 +4994,6 @@ void wfmain::on_pollingBtn_clicked() void wfmain::on_debugBtn_clicked() { qInfo(logSystem()) << "Debug button pressed."; - freqt f; - f.Hz = 14290000; - issueCmd(cmdSetFreq, f); + trxadj->show(); } diff --git a/wfmain.h b/wfmain.h index e74a539..1e3441e 100644 --- a/wfmain.h +++ b/wfmain.h @@ -21,6 +21,7 @@ #include "calibrationwindow.h" #include "repeatersetup.h" #include "satellitesetup.h" +#include "transceiveradjustments.h" #include "udpserversetup.h" #include "udpserver.h" #include "qledlabel.h" @@ -741,8 +742,10 @@ private: calibrationWindow *cal; repeaterSetup *rpt; satelliteSetup *sat; + transceiverAdjustments *trxadj; udpServerSetup *srv; + udpServer* udp = Q_NULLPTR; rigCtlD* rigCtl = Q_NULLPTR; QThread* serverThread = Q_NULLPTR;