From 914c6f3e7bb49bae3422e4d861b39cce620ce356 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Sat, 10 Aug 2024 20:42:24 +0200 Subject: [PATCH 1/7] Prevent tuning on top of a SuperFox message. --- widgets/mainwindow.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index d844b5e81..1c12744c0 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -5187,6 +5187,14 @@ void MainWindow::guiUpdate() // n64=n64/30; // n64=n64*30; // qDebug() << "bb" << m_config.FoxKey() << nsec%60 << dec_data.params.nutc << n64 << n64%60; + + // prevent tuning on top of a SuperFox message + if (SpecOp::HOUND==m_specOp && m_config.superFox() && m_tune) { + QDateTime now = QDateTime::currentDateTimeUtc(); + int s = now.time().toString("ss").toInt(); + if ((s >= 0 && s < 15) || (s >= 30 && s < 45)) ui->tuneButton->click (); + } + if(m_mode=="FST4") chk_FST4_freq_range(); m_currentBand=m_config.bands()->find(m_freqNominal); if( SpecOp::HOUND == m_specOp ) { From 08866b0d75d104abba8288a50ab1a1bb7a168122 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Sun, 11 Aug 2024 11:54:09 +0200 Subject: [PATCH 2/7] Ignore stations calling in the wrong time slot when in Hound mode. --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 1c12744c0..684b94df7 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4378,6 +4378,7 @@ void MainWindow::readFromStdout() //readFromStdout m_nFoxFreq=decodedtext.string().mid(16,4).toInt(); hound_reply (); } else { + if (SpecOp::HOUND==m_specOp && (text.mid(4,2).contains("15") or text.mid(4,2).contains("45"))) return; // ignore stations calling in the wrong time slot if (text.contains(" " + m_config.my_callsign() + " " + m_hisCall) && !text.contains("73 ")) processMessage(decodedtext0); // needed for MSHV multistream messages } } From 3fdd69d0218c47cbfb7aacf9e84427e47dcb473d Mon Sep 17 00:00:00 2001 From: Brian Moran Date: Mon, 12 Aug 2024 07:25:41 -0700 Subject: [PATCH 3/7] increase # of early decodes; check bounds before increasing iterator --- lib/ft8_decode.f90 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/ft8_decode.f90 b/lib/ft8_decode.f90 index 0cec0599e..9fe58e8c5 100644 --- a/lib/ft8_decode.f90 +++ b/lib/ft8_decode.f90 @@ -44,7 +44,7 @@ contains class(ft8_decoder), intent(inout) :: this procedure(ft8_decode_callback) :: callback - parameter (MAXCAND=600,MAX_EARLY=100) + parameter (MAXCAND=600,MAX_EARLY=200) real*8 tsec,tseq real sbase(NH1) real candidate(3,MAXCAND) @@ -60,7 +60,7 @@ contains character datetime*13,msg37*37 character*37 allmessages(200) character*12 ctime - integer allsnrs(200) + integer allsnrs(MAX_EARLY) integer itone(NN) integer itone_save(NN,MAX_EARLY) real f1_save(MAX_EARLY) @@ -215,6 +215,9 @@ contains if(msg37.eq.allmessages(id)) ldupe=.true. enddo if(.not.ldupe) then + if(ndecodes.ge.MAX_EARLY) then + cycle + endif ndecodes=ndecodes+1 allmessages(ndecodes)=msg37 allsnrs(ndecodes)=nsnr From 2e6a4f597bb4584d4ea28f49fea3af971b14d6b7 Mon Sep 17 00:00:00 2001 From: Brian Moran Date: Mon, 12 Aug 2024 15:42:22 -0700 Subject: [PATCH 4/7] additional array sizes needing adjustment --- lib/ft8/ft8_a7.f90 | 4 ++-- lib/ft8_decode.f90 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ft8/ft8_a7.f90 b/lib/ft8/ft8_a7.f90 index d32c96348..562176015 100644 --- a/lib/ft8/ft8_a7.f90 +++ b/lib/ft8/ft8_a7.f90 @@ -1,6 +1,6 @@ module ft8_a7 - parameter(MAXDEC=100) + parameter(MAXDEC=200) ! For the following three arrays ! First index i=decode number in this sequence @@ -43,7 +43,7 @@ subroutine ft8_a7_save(nutc,dt,f,msg) ! Add this decode to current table for this sequence ndec(j,1)=ndec(j,1)+1 !Number of decodes in this sequence i=ndec(j,1) !i is index of a new table entry - if(i.ge.MAXDEC-1) return !Prevent table overflow + if(i.gt.MAXDEC) return !Prevent table overflow (indexes start at 1) dt0(i,j,1)=dt !Save dt in table f0(i,j,1)=f !Save f in table diff --git a/lib/ft8_decode.f90 b/lib/ft8_decode.f90 index 9fe58e8c5..c7cc2828f 100644 --- a/lib/ft8_decode.f90 +++ b/lib/ft8_decode.f90 @@ -58,7 +58,7 @@ contains integer*2 iwave(15*12000) integer apsym2(58),aph10(10) character datetime*13,msg37*37 - character*37 allmessages(200) + character*37 allmessages(MAX_EARLY) character*12 ctime integer allsnrs(MAX_EARLY) integer itone(NN) From 0d7612218ff500247f29edde0eb216589f51f887 Mon Sep 17 00:00:00 2001 From: Brian Moran Date: Mon, 12 Aug 2024 17:04:32 -0700 Subject: [PATCH 5/7] show SFox tx messages in ALL.TXT --- widgets/mainwindow.cpp | 29 ++++++++++++++++++++++++++--- widgets/mainwindow.h | 1 + 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 5aafc1f70..376beb401 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4961,7 +4961,10 @@ void MainWindow::guiUpdate() foxcom_.bSendMsg=ui->cbSendMsg->isChecked(); memcpy(foxcom_.textMsg, m_freeTextMsg.leftJustified(26,' ').toLatin1(),26); foxgen_(&bSuperFox, fname.constData(), (FCL)fname.size()); - if(bSuperFox) sfox_tx(); + if(bSuperFox) { + writeFoxTxMsgs(); + sfox_tx(); + } } } } @@ -10578,7 +10581,10 @@ Transmit: ::memcpy(foxcom_.textMsg, m_freeTextMsg0.leftJustified(26,' ').toLatin1(),26); auto fname {QDir::toNativeSeparators(m_config.writeable_data_dir().absoluteFilePath("sfox_1.dat")).toLocal8Bit()}; foxgen_(&bSuperFox, fname.constData(), (FCL)fname.size()); - if(bSuperFox) sfox_tx(); + if(bSuperFox) { + writeFoxTxMsgs(); + sfox_tx(); + } m_tFoxTxSinceCQ++; for(QString hc: m_foxQSO.keys()) { //Check for strikeout or timeout @@ -10711,7 +10717,24 @@ void MainWindow::foxGenWaveform(int i,QString fm) writeFoxQSO(t + fm.trimmed()); } -void MainWindow::writeFoxQSO(QString const& msg) +void MainWindow::writeFoxTxMsgs() { + // references extern struct foxcom_ + QString t; + for (int i = 0; i < 5; i++) { + t = QString::fromLatin1(foxcom_.cmsg[i]).left(40); + if (t.length() > 0) { + write_all("Tx", t); + } + } + t = QString::fromLatin1(foxcom_.textMsg).left(38); + if (foxcom_.bSendMsg) { + write_all("Tx", "-Free Text- "+t); + } + if (foxcom_.bMoreCQs) { + write_all("Tx", "-MoreCQs- "); + } +} + void MainWindow::writeFoxQSO(QString const& msg) { QString t; t = t.asprintf("%3d%3d%3d",m_houndQueue.count(),m_foxQSOinProgress.count(),m_foxQSO.count()); diff --git a/widgets/mainwindow.h b/widgets/mainwindow.h index adcb359f8..22e99c5f6 100644 --- a/widgets/mainwindow.h +++ b/widgets/mainwindow.h @@ -889,6 +889,7 @@ private: void activeWorked(QString call, QString band); void read_log(); void refreshPileupList(); + void writeFoxTxMsgs(); }; extern int killbyname(const char* progName); From d7981738fec99fa33ecb2d2ea1f0026a5f2db402 Mon Sep 17 00:00:00 2001 From: Brian Moran Date: Tue, 13 Aug 2024 18:00:38 -0700 Subject: [PATCH 6/7] use age calculation consistently --- lib/decoder.f90 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/decoder.f90 b/lib/decoder.f90 index fe6a31676..acac2b54d 100644 --- a/lib/decoder.f90 +++ b/lib/decoder.f90 @@ -180,14 +180,15 @@ subroutine multimode_decoder(ss,id2,params,nfsample) else do i=1,nfox n=n30fox(i) - if(n30-n30fox(i).le.4) then + nage=min(99,mod(n30-n+288000,2880)) + if(nage.le.4) then j=j+1 c2fox(j)=c2fox(i) g2fox(j)=g2fox(i) nsnrfox(j)=nsnrfox(i) nfreqfox(j)=nfreqfox(i) n30fox(j)=n - nage=min(99,mod(n30-n+288000,2880)) + ! nage=min(99,mod(n30-n+288000,2880)) if(len(trim(g2fox(j))).eq.4) then call azdist(mygrid,g2fox(j)//' ',0.d0,nAz,nEl,nDmiles, & nDkm,nHotAz,nHotABetter) From a8eaa66f2a52a27dbc649bcd955906a5c4f04b1d Mon Sep 17 00:00:00 2001 From: Brian Moran Date: Tue, 13 Aug 2024 19:29:54 -0700 Subject: [PATCH 7/7] default colors in Hound controls --- widgets/displaytext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/widgets/displaytext.cpp b/widgets/displaytext.cpp index 5bd4ef4ac..147255c91 100644 --- a/widgets/displaytext.cpp +++ b/widgets/displaytext.cpp @@ -561,8 +561,8 @@ void DisplayText::displayHoundToBeCalled(QString t, bool bAtTop, QColor bg, QCol } void DisplayText::setHighlightedHoundText(QString t) { - QColor bg; - QColor fg; + QColor bg=QColor{255,255,255}; + QColor fg=QColor{0,0,0}; highlight_types types{Highlight::Call}; set_colours(m_config, &bg, &fg, types); // t is multiple lines of text, each line is a hound calling