Fox/Hound must use 77-bit msgs. Generate "CQ TEST" and "CQ HUND" msgs.

This commit is contained in:
Joe Taylor 2018-10-04 09:55:50 -04:00
parent 35ea5f5761
commit 5e9297bb74
2 changed files with 6 additions and 4 deletions

View File

@ -2645,11 +2645,10 @@ void Configuration::impl::on_cbHound_clicked (bool checked)
void Configuration::impl::chk77()
{
bool b77OK = !ui_->cbFox->isChecked() and !ui_->cbHound->isChecked();
ui_->groupBox_8->setEnabled(b77OK);
ui_->groupBox_9->setEnabled(b77OK);
if(!b77OK) {
ui_->cbGenerate77->setChecked(false);
ui_->cbDecode77->setChecked(false);
ui_->cbGenerate77->setChecked(true);
ui_->cbDecode77->setChecked(true);
}
}

View File

@ -4610,9 +4610,12 @@ void MainWindow::genCQMsg ()
QString t=ui->tx6->text();
if((m_mode=="FT8" or m_mode=="MSK144") and m_nContest!=NONE and
t.split(" ").at(1)==m_config.my_callsign()) {
// if(m_nContest==NA_VHF) t="CQ QP" + t.mid(2,-1);
qDebug() << "aa" << m_nContest;
if(m_nContest==NA_VHF) t="CQ TEST" + t.mid(2,-1);
if(m_nContest==EU_VHF) t="CQ TEST" + t.mid(2,-1);
if(m_nContest==FIELD_DAY) t="CQ FD" + t.mid(2,-1);
if(m_nContest==RTTY) t="CQ RU" + t.mid(2,-1);
if(m_nContest==FOX) t="CQ HUND" + t.mid(2,-1);
ui->tx6->setText(t);
}
} else {