Black Michael via wsjt-devel
2017-07-15 13:14:07 UTC
Disable tx in autoseq mode when the response to CQ does not include your callsign.This is where we could do an auto freq shift if we wanted...but do we want to do that? Â I think Joe was thinking about it.The advantage I would see to auto freq shift is we could space the FT8 signals more closely than operators normally would.Perhaps an auto shift but tx still disabled and add a message to Browser2 that says "Offset adjusted . Enable Tx if offset is OK."
Index: mainwindow.cpp===================================================================--- mainwindow.cpp    (revision 7891)+++ mainwindow.cpp    (working copy)@@ -2791,6 +2791,10 @@    if(ui->cbAutoSeq->isChecked() and !m_sentFirst73) processMessage (message,43,false);   }  }+  else if (m_ntx == 6) { // Stop CQ if response is not for us -- do freq shift here maybe?+   ui->stopTxButton->click ();+   ui->decodedTextBrowser2->appendText("Overlap - Tx disabled");+  } }
 void MainWindow::pskPost(DecodedText decodedtext) -----------------------------------
Michael D. Black
Index: mainwindow.cpp===================================================================--- mainwindow.cpp    (revision 7891)+++ mainwindow.cpp    (working copy)@@ -2791,6 +2791,10 @@    if(ui->cbAutoSeq->isChecked() and !m_sentFirst73) processMessage (message,43,false);   }  }+  else if (m_ntx == 6) { // Stop CQ if response is not for us -- do freq shift here maybe?+   ui->stopTxButton->click ();+   ui->decodedTextBrowser2->appendText("Overlap - Tx disabled");+  } }
 void MainWindow::pskPost(DecodedText decodedtext) -----------------------------------
Michael D. Black