diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-11-09 19:05:17 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-11-10 14:39:40 -0500 |
commit | 908e0409de40e7c3a7c855f680ad568b1acd85e0 (patch) | |
tree | 0955ec679970f6e20dd294fa33c10b249af1dc64 /gr-filter/examples/reconstruction.py | |
parent | 2f78621b74296c397143371e30707024fa33d082 (diff) |
channels: adding new component gr-channels to hold channel models.
Currently, only holds our simple channel_model block.
Diffstat (limited to 'gr-filter/examples/reconstruction.py')
-rwxr-xr-x | gr-filter/examples/reconstruction.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gr-filter/examples/reconstruction.py b/gr-filter/examples/reconstruction.py index f4908006fc..75c224e79c 100755 --- a/gr-filter/examples/reconstruction.py +++ b/gr-filter/examples/reconstruction.py @@ -24,6 +24,12 @@ from gnuradio import gr, digital from gnuradio import filter try: + from gnuradio import channels +except ImportError: + print "Error: Program requires gr-channels." + sys.exit(1) + +try: import scipy from scipy import fftpack except ImportError: |