[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/01: Fix uhd_rx_nogui so it runs.
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/01: Fix uhd_rx_nogui so it runs. |
Date: |
Sat, 17 Oct 2015 17:26:52 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit 6bd98504810be28f0ae76b2a26ba438d8538a933
Author: Philip Balister <address@hidden>
Date: Tue Oct 13 14:13:29 2015 -0400
Fix uhd_rx_nogui so it runs.
Updated the number of gain arguments to analog.agc_cc from 2 to 1. This
eliminates an error that stops the script.
Signed-off-by: Philip Balister <address@hidden>
---
gr-uhd/apps/uhd_rx_nogui | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gr-uhd/apps/uhd_rx_nogui b/gr-uhd/apps/uhd_rx_nogui
index ea43a43..3f43f57 100755
--- a/gr-uhd/apps/uhd_rx_nogui
+++ b/gr-uhd/apps/uhd_rx_nogui
@@ -163,8 +163,7 @@ class app_top_block(gr.top_block):
AGC = analog.agc_cc(1.0/channel_rate, # Time constant
1.0, # Reference power
- 1.0, # Initial gain
- 1.0) # Maximum gain
+ 1.0) # Gain
DEMOD = demod(channel_rate, audio_decim)