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
+2 -3
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);
}
}