mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-23 20:58:55 -05:00
Refine the special treatment of 73 messages
The feature to set the next message to be sent to auto generated message number 6 (CQ) is now only trggered when a transmission of a 73 message is made for the first time in a QSO. If a second 73 message is required, for example when a QSO partner repeats an RRR message after your 73 message, simply double clicking the RRR message will initiate another 73 message without triggering a log QSO dialog or setting the next message to CQ. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5065 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
7be9de6b7a
commit
25d18dd545
@ -50,6 +50,13 @@ namespace
|
||||
{
|
||||
Radio::Frequency constexpr default_frequency {14076000};
|
||||
QRegExp message_alphabet {"[- A-Za-z0-9+./?]*"};
|
||||
|
||||
bool message_is_73 (int type, QStringList const& msg_parts)
|
||||
{
|
||||
return type >= 0
|
||||
&& ((type < 6 && msg_parts.contains ("73"))
|
||||
|| (type == 6 && !msg_parts.filter ("73").isEmpty ()));
|
||||
}
|
||||
}
|
||||
|
||||
class BandAndFrequencyItemDelegate final
|
||||
@ -90,6 +97,9 @@ MainWindow::MainWindow(bool multiple, QSettings * settings, QSharedMemory *shdme
|
||||
m_modulator (TX_SAMPLE_RATE, NTMAX / 2),
|
||||
m_audioThread {new QThread},
|
||||
m_diskData {false},
|
||||
m_sentFirst73 {false},
|
||||
m_currentMessageType {-1},
|
||||
m_lastMessageType {-1},
|
||||
m_appDir {QApplication::applicationDirPath ()},
|
||||
mem_jt9 {shdmem},
|
||||
psk_Reporter (new PSK_Reporter (this)),
|
||||
@ -330,7 +340,6 @@ MainWindow::MainWindow(bool multiple, QSettings * settings, QSharedMemory *shdme
|
||||
m_decodedText2=false;
|
||||
m_freeText=false;
|
||||
m_msErase=0;
|
||||
m_sent73=false;
|
||||
m_watchdogLimit=7;
|
||||
m_repeatMsg=0;
|
||||
m_secBandChanged=0;
|
||||
@ -1580,25 +1589,36 @@ void MainWindow::guiUpdate()
|
||||
ba2msg(ba,message);
|
||||
// ba2msg(ba,msgsent);
|
||||
int len1=22;
|
||||
int ichk=0,itype=0;
|
||||
int ichk=0;
|
||||
if (m_lastMessageSent != m_currentMessage
|
||||
|| m_lastMessageType != m_currentMessageType)
|
||||
{
|
||||
m_lastMessageSent = m_currentMessage;
|
||||
m_lastMessageType = m_currentMessageType;
|
||||
}
|
||||
m_currentMessageType = 0;
|
||||
if(m_modeTx=="JT9") genjt9_(message
|
||||
, &ichk
|
||||
, msgsent
|
||||
, const_cast<int *> (itone)
|
||||
, &itype
|
||||
, &m_currentMessageType
|
||||
, len1
|
||||
, len1);
|
||||
if(m_modeTx=="JT65") gen65_(message
|
||||
, &ichk
|
||||
, msgsent
|
||||
, const_cast<int *> (itone)
|
||||
, &itype
|
||||
, &m_currentMessageType
|
||||
, len1
|
||||
, len1);
|
||||
msgsent[22]=0;
|
||||
QString t=QString::fromLatin1(msgsent);
|
||||
if(m_tune) t="TUNE";
|
||||
last_tx_label->setText("Last Tx: " + t);
|
||||
m_currentMessage = QString::fromLatin1(msgsent);
|
||||
if (m_tune)
|
||||
{
|
||||
m_currentMessage = "TUNE";
|
||||
m_currentMessageType = -1;
|
||||
}
|
||||
last_tx_label->setText("Last Tx: " + m_currentMessage);
|
||||
if(m_restart) {
|
||||
QFile f {m_dataDir.absoluteFilePath ("ALL.TXT")};
|
||||
if (f.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append))
|
||||
@ -1606,7 +1626,7 @@ void MainWindow::guiUpdate()
|
||||
QTextStream out(&f);
|
||||
out << QDateTime::currentDateTimeUtc().toString("hhmm")
|
||||
<< " Transmitting " << (m_dialFreq / 1.e6) << " MHz " << m_modeTx
|
||||
<< ": " << t << endl;
|
||||
<< ": " << m_currentMessage << endl;
|
||||
f.close();
|
||||
}
|
||||
else
|
||||
@ -1615,17 +1635,18 @@ void MainWindow::guiUpdate()
|
||||
}
|
||||
if (m_config.TX_messages ())
|
||||
{
|
||||
ui->decodedTextBrowser2->displayTransmittedText(t,m_modeTx,
|
||||
ui->decodedTextBrowser2->displayTransmittedText(m_currentMessage,m_modeTx,
|
||||
ui->TxFreqSpinBox->value(),m_config.color_TxMsg());
|
||||
}
|
||||
}
|
||||
|
||||
auto t2 = QDateTime::currentDateTimeUtc ().toString ("hhmm");
|
||||
icw[0] = 0;
|
||||
auto msg_parts = t.split (" ", QString::SkipEmptyParts);
|
||||
m_sent73 = (itype < 6 && msg_parts.contains ("73"))
|
||||
|| (itype == 6 && t.contains ("73"));
|
||||
if (m_sent73)
|
||||
auto msg_parts = m_currentMessage.split (' ', QString::SkipEmptyParts);
|
||||
auto is_73 = message_is_73 (m_currentMessageType, msg_parts);
|
||||
m_sentFirst73 = is_73
|
||||
&& !message_is_73 (m_lastMessageType, m_lastMessageSent.split (' ', QString::SkipEmptyParts));
|
||||
if (m_sentFirst73)
|
||||
{
|
||||
m_qsoStop=t2;
|
||||
if(m_config.id_after_73 ())
|
||||
@ -1636,11 +1657,11 @@ void MainWindow::guiUpdate()
|
||||
{
|
||||
logQSOTimer->start (0);
|
||||
}
|
||||
if (m_config.disable_TX_on_73 ())
|
||||
}
|
||||
if (is_73 && m_config.disable_TX_on_73 ())
|
||||
{
|
||||
auto_tx_mode (false);
|
||||
}
|
||||
}
|
||||
|
||||
if(m_config.id_interval () >0) {
|
||||
int nmin=(m_sec0-m_secID)/60;
|
||||
@ -1650,7 +1671,7 @@ void MainWindow::guiUpdate()
|
||||
}
|
||||
}
|
||||
|
||||
if (itype < 6 && msg_parts.length() >= 3
|
||||
if (m_currentMessageType < 6 && msg_parts.length() >= 3
|
||||
&& (msg_parts[1] == m_config.my_callsign () || msg_parts[1] == m_baseCall))
|
||||
{
|
||||
int i1;
|
||||
@ -1673,15 +1694,14 @@ void MainWindow::guiUpdate()
|
||||
}
|
||||
}
|
||||
}
|
||||
qDebug () << "Report sent:" << m_rptSent;
|
||||
}
|
||||
m_restart=false;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!m_auto && m_sent73)
|
||||
if (!m_auto && m_sentFirst73)
|
||||
{
|
||||
m_sent73 = false;
|
||||
m_sentFirst73 = false;
|
||||
if (1 == ui->tabWidget->currentIndex())
|
||||
{
|
||||
ui->genMsg->setText(ui->tx6->text());
|
||||
@ -1717,7 +1737,7 @@ void MainWindow::guiUpdate()
|
||||
QTextStream out(&f);
|
||||
out << QDateTime::currentDateTimeUtc().toString("hhmm")
|
||||
<< " Transmitting " << (m_dialFreq / 1.e6) << " MHz " << m_modeTx
|
||||
<< ": " << t << endl;
|
||||
<< ": " << m_currentMessage << endl;
|
||||
f.close();
|
||||
}
|
||||
else
|
||||
@ -2841,7 +2861,7 @@ void MainWindow::on_tuneButton_clicked (bool checked)
|
||||
}
|
||||
else
|
||||
{
|
||||
m_sent73=false;
|
||||
m_sentFirst73=false;
|
||||
m_repeatMsg=0;
|
||||
on_monitorButton_clicked (true);
|
||||
}
|
||||
|
@ -282,7 +282,11 @@ private:
|
||||
bool m_freeText;
|
||||
bool m_quickCall;
|
||||
bool m_73TxDisable;
|
||||
bool m_sent73;
|
||||
bool m_sentFirst73;
|
||||
int m_currentMessageType;
|
||||
QString m_currentMessage;
|
||||
int m_lastMessageType;
|
||||
QString m_lastMessageSent;
|
||||
bool m_runaway;
|
||||
bool m_bMultipleOK;
|
||||
bool m_lockTxFreq;
|
||||
|
Loading…
Reference in New Issue
Block a user