diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-08 10:01:37 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-08 10:01:37 -0500 |
commit | fe70fa72ea22a133874337da2d03d30611e5ab1c (patch) | |
tree | 720a9e4e289e9a029fb363c635675daf91e5f77b /gr-filter/examples | |
parent | 0970c7eaa165c6dc7d70be55dbf3d272b88fc109 (diff) |
blocks: removed all nco/vco and fxpt stuff from core; now in gr-blocks.
Moved the nco/vco tests to gr-blocks/test and enabled them.
Diffstat (limited to 'gr-filter/examples')
-rwxr-xr-x | gr-filter/examples/chirp_channelize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-filter/examples/chirp_channelize.py b/gr-filter/examples/chirp_channelize.py index ca97a5551c..d4d2f8e238 100755 --- a/gr-filter/examples/chirp_channelize.py +++ b/gr-filter/examples/chirp_channelize.py @@ -74,7 +74,7 @@ class pfb_top_block(gr.top_block): # Build a VCO controlled by either the sinusoid or single chirp tone # Then convert this to a complex signal - self.vco = gr.vco_f(self._fs, 225, 1) + self.vco = blocks.vco_f(self._fs, 225, 1) self.f2c = blocks.float_to_complex() self.head = gr.head(gr.sizeof_gr_complex, self._N) |