diff options
author | Tom Rondeau | 2011-10-19 09:58:03 -0700 |
---|---|---|
committer | Tom Rondeau | 2011-10-19 09:58:03 -0700 |
commit | 7e985e7f553a863df37cf39bfd2bd958d82ea46c (patch) | |
tree | 5bdc21a7c1ab3290b6bd283f699befd77f23bc0f /gr-digital/examples/narrowband/digital_bert_rx.py | |
parent | 792e9780cd48177a13416e5926b77f30526ae3ec (diff) | |
download | gnuradio-7e985e7f553a863df37cf39bfd2bd958d82ea46c.tar.gz gnuradio-7e985e7f553a863df37cf39bfd2bd958d82ea46c.tar.bz2 gnuradio-7e985e7f553a863df37cf39bfd2bd958d82ea46c.zip |
digital: fixed digital narrowband examples to use args instead of address and better default.
Diffstat (limited to 'gr-digital/examples/narrowband/digital_bert_rx.py')
-rwxr-xr-x | gr-digital/examples/narrowband/digital_bert_rx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/examples/narrowband/digital_bert_rx.py b/gr-digital/examples/narrowband/digital_bert_rx.py index 9878f55e1..28331310d 100755 --- a/gr-digital/examples/narrowband/digital_bert_rx.py +++ b/gr-digital/examples/narrowband/digital_bert_rx.py @@ -113,7 +113,7 @@ class rx_psk_block(gr.top_block): self._demodulator = self._demodulator_class(**demod_kwargs) if(options.rx_freq is not None): - self._source = uhd_receiver(options.address, options.bitrate, + self._source = uhd_receiver(options.args, options.bitrate, options.samples_per_symbol, options.rx_freq, options.rx_gain, options.antenna, options.verbose) |