This is a small patch to restore the 25 second cutoff for transmit on JT65
and JT9.
Looks to me like the change that broke this was simply intended as a
temporary thing to let WSPR work with its desired behavior.
Should other modes have limits too?
@@ -1896,7 +1899,9 @@
}
float fTR=float((nsec%m_TRperiod))/m_TRperiod;
-// if(g_iptt==0 and ((m_bTxTime and fTR<0.4) or m_tune )) {
+ 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;
73
Mike W9MDB
------------------------------------------------------------------------------
_______________________________________________
wsjt-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wsjt-devel