From 4af1a14961e403b0c7424186c620ac03a6940717 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Sat, 1 Dec 2018 16:51:14 -0500 Subject: [PATCH] Remove FT8 reference from ALL.txt --- mainwindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index d69219c..22ddb8f 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3722,7 +3722,7 @@ void MainWindow::writeAllTxt(QString message, int bits) if(m_RxLog==1) { out << DriftingDateTime::currentDateTimeUtc().toString("yyyy-MM-dd hh:mm:ss") << " " << qSetRealNumberPrecision (12) << (m_freqNominal / 1.e6) << " MHz " - << m_mode << endl; + << "JS8" << endl; m_RxLog=0; } auto dt = DecodedText(message, bits); @@ -3827,7 +3827,7 @@ void MainWindow::readFromStdout() //readFromStdout if(m_RxLog==1) { out << DriftingDateTime::currentDateTimeUtc().toString("yyyy-MM-dd hh:mm:ss") << " " << qSetRealNumberPrecision (12) << (m_freqNominal / 1.e6) << " MHz " - << m_mode << endl; + << "JS8" << endl; m_RxLog=0; } int n=t.length(); @@ -7929,7 +7929,7 @@ void MainWindow::handle_transceiver_update (Transceiver::TransceiverState const& QTextStream out(&f2); out << DriftingDateTime::currentDateTimeUtc().toString("yyyy-MM-dd hh:mm:ss") << " " << qSetRealNumberPrecision (12) << (m_freqNominal / 1.e6) << " MHz " - << m_mode << endl; + << "JS8" << endl; f2.close(); } else { MessageBox::warning_message (this, tr ("File Error") @@ -10946,7 +10946,7 @@ void MainWindow::write_transmit_entry (QString const& file_name) auto dt = DecodedText(m_currentMessage, m_currentMessageBits); out << time.toString("yyyy-MM-dd hh:mm:ss") << " Transmitting " << qSetRealNumberPrecision (12) << (m_freqNominal / 1.e6) - << " MHz " << QString(m_modeTx).replace("FT8", "JS8") + << " MHz " << "JS8" << ": " << dt.message() << endl; f.close(); }