Generate RTTY contest message with QSO serial number for DX stations.

This commit is contained in:
Joe Taylor 2018-07-26 11:08:52 -04:00
parent f7c02ec587
commit 3dca6a5933

View File

@ -4498,7 +4498,9 @@ void MainWindow::genStdMsgs(QString rpt, bool unconditional)
if(m_config.bRTTYroundup()) {
t=t0 + rst + m_config.RTTYExchange(); //Use a real report
msgtype(t, ui->tx2);
t=t0 + "R " + rst + m_config.RTTYExchange();
QString t1=m_config.RTTYExchange();
if(t1=="DX" or t1=="#") t1.sprintf("%4.4d",ui->sbSerialNumber->value());
t=t0 + "R " + rst + t1;
msgtype(t, ui->tx3);
m_send_RR73=true;
}