I submitted this over a week ago and never heard any comments..is this 25
second time limit on transmit for JT65/JT9 no longer desirable?
Or should other modes be included?

73
Mike W9MDB

Index: mainwindow.cpp
===================================================================
--- mainwindow.cpp      (revision 5475)
+++ mainwindow.cpp      (working copy)
@@ -1870,8 +1873,10 @@
     }

     float fTR=float((nsec%m_TRperiod))/m_TRperiod;
-//    if(g_iptt==0 and ((m_bTxTime and fTR<0.4) or m_tune )) {
-    if(g_iptt==0 and ((m_bTxTime and fTR<99) or m_tune )) {   //### allow
late starts ###
+    float fTRthreshold = 99;
+    if (m_modeTx=="JT65" || m_modeTx=="JT9")
+      fTRthreshold = 0.4; // don't let transmit past 40% (~25 secs) into tx
period
+    if(g_iptt==0 and ((m_bTxTime and fTR<fTRthreshold) or m_tune )) {
//### allow late starts ###
       icw[0]=m_ncw;
       g_iptt = 1;
       setXIT (ui->TxFreqSpinBox->value ());         //Ensure correct offset


------------------------------------------------------------------------------
_______________________________________________
wsjt-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to