You're wrong -- it's being transmitted too.I send that example a while ago. Mike W9MDB
On Tuesday, February 16, 2021, 02:44:26 AM CST, Reino Talarmo <reino.tala...@kolumbus.fi> wrote: >Patch to fix the problem.... index 8e442d05f..81a978852 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1288,6 +1288,7 @@ void MainWindow::readSettings() // setup initial value of tx attenuator m_block_pwr_tooltip = true; ui->outAttenuation->setValue (m_settings->value ("OutAttenuation", 0).toInt ()); + on_outAttenuation_valueChanged(ui->outAttenuation->value()); m_block_pwr_tooltip = false; ui->sbCQTxFreq->setValue (m_settings->value ("CQTxFreq", 260).toInt()); m_noSuffix=m_settings->value("NoSuffix",false).toBool(); @@ -7424,7 +7425,7 @@ void MainWindow::transmit (double snr) void MainWindow::on_outAttenuation_valueChanged (int a) { QString tt_str; - qreal dBAttn {a / 10.}; // slider interpreted as dB / 100 + qreal dBAttn {a / 10. + 3}; // slider interpreted as dB / 100 (+3 to keep minimize artifacts) if (m_tune && m_config.pwrBandTuneMemory()) { tt_str = tr ("Tune digital gain "); } else { >Mike W9MDB Hi I still would like to know where the issue really is. I have now impression that it is at receiving entity not at transmitting one. Looks more like a measurement artifact due to some (dynamic range) problem at waterfall display. Correct me, if I am wrong. 73, Reino OH3mA
_______________________________________________ wsjt-devel mailing list wsjt-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wsjt-devel