Skip to content

Commit

Permalink
Merge pull request #1007 from argilo/higher-squelch-threshold
Browse files Browse the repository at this point in the history
Increase automatic squelch margin to 3 dB
  • Loading branch information
argilo authored Nov 30, 2021
2 parents f18311f + 8d41fd3 commit 75d108f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions resources/news.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
FIXED: Compilation error due to missing include.
IMPROVED: Reordered the receiver mode drop-down list.
IMPROVED: Receiver mode is now stored as a string in settings files.
IMPROVED: Increased automatic squelch margin to 3 dB.


2.14.6: Released October 6, 2021
Expand Down
2 changes: 1 addition & 1 deletion src/applications/gqrx/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1339,7 +1339,7 @@ void MainWindow::setSqlLevel(double level_db)
*/
double MainWindow::setSqlLevelAuto()
{
double level = rx->get_signal_pwr() + 1.0;
double level = rx->get_signal_pwr() + 3.0;
if (level > -10.0) // avoid 0 dBFS
level = uiDockRxOpt->getSqlLevel();

Expand Down

0 comments on commit 75d108f

Please sign in to comment.