From 5948c0d02422c2dd0bba636f7085f402b490f5a8 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 2 Mar 2024 14:38:40 -0500 Subject: [PATCH] More WIP on SuperFox. --- widgets/mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 1f440ee73..822b4b95a 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -10304,7 +10304,7 @@ Transmit: QString foxCall=m_config.my_callsign() + " "; ::memcpy(foxcom_.mycall, foxCall.toLatin1(),sizeof foxcom_.mycall); //Copy Fox callsign into foxcom_ bool bSuperFox=m_config.superFox(); - qDebug() << "bb" << foxcom_.nslots << foxcom_.mycall << foxcom_.cmsg; + qDebug() << "bb" << foxcom_.nslots << foxcom_.mycall << foxcom_.cmsg[0]; char cmnd[120]; foxgen_(&bSuperFox, cmnd, 120); if(bSuperFox) { @@ -10888,9 +10888,9 @@ void MainWindow::on_jt65Button_clicked() void MainWindow::sfox_tx(QString t) { - qint64 ms0 = QDateTime::currentMSecsSinceEpoch(); +// qint64 ms0 = QDateTime::currentMSecsSinceEpoch(); p2.start("sfox_tx", QStringList {t}); p2.waitForFinished(); QString t2=p2.readAllStandardOutput(); - qDebug() << "aa" << QDateTime::currentMSecsSinceEpoch() - ms0 << t2; +// qDebug() << "aa" << QDateTime::currentMSecsSinceEpoch() - ms0 << t2; }