mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Fox/Hound must use 77-bit msgs. Generate "CQ TEST" and "CQ HUND" msgs.
This commit is contained in:
parent
35ea5f5761
commit
5e9297bb74
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user