diff options
author | Tom Rondeau | 2011-10-07 10:39:38 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-10-07 10:39:38 -0400 |
commit | e1180546037845728fa0aed892ab751f6924f361 (patch) | |
tree | fc835105dc5e4b1cd98b05a2678d3f50b2fed98e /gr-digital | |
parent | 2f75b230e1a54ce10900ad37520dd03ff01685e8 (diff) | |
download | gnuradio-e1180546037845728fa0aed892ab751f6924f361.tar.gz gnuradio-e1180546037845728fa0aed892ab751f6924f361.tar.bz2 gnuradio-e1180546037845728fa0aed892ab751f6924f361.zip |
digital: minor bug fix
Diffstat (limited to 'gr-digital')
-rwxr-xr-x | gr-digital/examples/benchmark_rx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/examples/benchmark_rx.py b/gr-digital/examples/benchmark_rx.py index 7eb4fb9b4..c586cc8fe 100755 --- a/gr-digital/examples/benchmark_rx.py +++ b/gr-digital/examples/benchmark_rx.py @@ -44,7 +44,7 @@ class my_top_block(gr.top_block): def __init__(self, demodulator, rx_callback, options): gr.top_block.__init__(self) - if(options.tx_freq is not None): + if(options.rx_freq is not None): self.source = uhd_receiver(options.address, options.bitrate, options.samples_per_symbol, options.rx_freq, options.rx_gain, |