diff --git a/doc/user_guide/en/controls-functions-center.adoc b/doc/user_guide/en/controls-functions-center.adoc index 7e6020a13..5f7a36d06 100644 --- a/doc/user_guide/en/controls-functions-center.adoc +++ b/doc/user_guide/en/controls-functions-center.adoc @@ -36,3 +36,12 @@ upper limit of -1 dB. TIP: Consider reducing power if your QSO partner reports your signal above -5 dB in one of the _WSJT-X_ slow modes. These are supposed to be weak signal modes! + +* With *Rx frequency offset with "CQ nnn"* checked on the *Settings -> +General* tab and *Split operation* activated on the *Settings -> +Radio* tab, you can activate the spinner control *CQ Rx nnn* by +checking the box to its right. The program will then generate +something like `CQ 285 K1ABC FN42` for your CQ message, and it will +handle the appropriate frequency switching between a CQ on the +conventional calling frequency and completing your QSO on the +specified offset frequency. \ No newline at end of file diff --git a/doc/user_guide/en/controls-functions-status-bar.adoc b/doc/user_guide/en/controls-functions-status-bar.adoc index 2709c9c60..1a6c2284a 100644 --- a/doc/user_guide/en/controls-functions-status-bar.adoc +++ b/doc/user_guide/en/controls-functions-status-bar.adoc @@ -7,16 +7,18 @@ information about operating conditions. image::status-bar-a.png[align="left",alt="Status Bar"] Labels on the *Status Bar* display such information as the program's -current operating state, operating mode, the content of your most -recent transmitted message, and whether *Double-click on call sets Tx -enable* has been selected on the *Settings | General* tab. The first -label (operating state) can be Receiving, Tx (for Transmitting), Tune, -or the name of file opened from the *File* menu; this label is -highlighted in green for Receiving, yellow for Tx, red for Tune, and -light blue for a file name. When transmitting, the Tx message is -displayed exactly as it will be decoded by receiving stations. A -progress bar shows the elapsed fraction of a Tx or Rx sequence. -Finally, if the Watchdog timer was enabled on the *settings | General* -tab, a label in the lower right-hand corner displays the number of -minutes remaining before timeout. +current operating state, configuration name, operating mode, the +content of your most recent transmitted message, and whether +*Double-click on call sets Tx enable* has been selected on the +*Settings | General* tab. The first label (operating state) can be +Receiving, Tx (for Transmitting), Tune, or the name of file opened +from the *File* menu; this label is highlighted in green for +Receiving, yellow for Tx, red for Tune, and light blue for a file +name. When transmitting, the Tx message is displayed exactly as it +will be decoded by receiving stations. The second label (as shown +above) will be absent if you are using the *Default* setting on the +*Configurations* menu. A progress bar shows the elapsed fraction of a +Tx or Rx sequence. Finally, if the Watchdog timer was enabled on the +*settings | General* tab, a label in the lower right-hand corner +displays the number of minutes remaining before timeout. diff --git a/mainwindow.cpp b/mainwindow.cpp index fdb5b030f..7deb75cae 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1433,6 +1433,7 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog } update_watchdog_label (); ui->cbCQRx->setEnabled(m_splitMode); + if(!m_splitMode) ui->cbCQRx->setChecked(false); } void MainWindow::on_monitorButton_clicked (bool checked) @@ -4245,7 +4246,7 @@ void MainWindow::on_actionMSK144_triggered() m_detector->setPeriod(m_TRperiod); // TODO - not thread safe m_wideGraph->setPeriod(m_TRperiod,m_nsps); ui->label_6->setText("Band Activity"); - ui->label_7->setText("QSO Messages"); + ui->label_7->setText("Tx Messages"); ui->actionMSK144->setChecked(true); ui->rptSpinBox->setMinimum(-8); ui->rptSpinBox->setMaximum(24);