diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-18 12:50:11 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-18 12:50:11 -0400 |
commit | 435b1d166f0c7092bbd5e1f788e75dbb6ade3a4b (patch) | |
tree | 66332e47e3b889d980a0f01a0857df9ea5d4137e /gr-filter/examples | |
parent | 5f839d93c97a2ac86001dbabdfc3941cf23410a1 (diff) |
Revert "blocks: removed all nco/vco and fxpt stuff from core; now in gr-blocks."
This reverts commit fe70fa72ea22a133874337da2d03d30611e5ab1c.
Conflicts:
gnuradio-core/src/lib/general/CMakeLists.txt
gnuradio-core/src/lib/general/general.i
gnuradio-core/src/tests/CMakeLists.txt
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 aedd5c4892..ef69aa0e02 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 = blocks.vco_f(self._fs, 225, 1) + self.vco = gr.vco_f(self._fs, 225, 1) self.f2c = blocks.float_to_complex() self.head = blocks.head(gr.sizeof_gr_complex, self._N) |