diff options
author | mi-a <kermitalter@gmail.com> | 2014-04-19 13:37:38 +0300 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-21 14:39:59 -0700 |
commit | 7b3f9975dcbba94b095d8e61b6b4793138dbf647 (patch) | |
tree | ddccb0677b031857227bd34f891f3790a4f200d2 /docs/doxygen/other | |
parent | 7ce93ff2060cbf8d7a0dfb6fbc0db8e241900048 (diff) |
documentation - fix example in case anyone gets confused
Diffstat (limited to 'docs/doxygen/other')
-rw-r--r-- | docs/doxygen/other/main_page.dox | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/doxygen/other/main_page.dox b/docs/doxygen/other/main_page.dox index dde7610974..62ea8a9929 100644 --- a/docs/doxygen/other/main_page.dox +++ b/docs/doxygen/other/main_page.dox @@ -79,7 +79,7 @@ done. A single source and sink are used with a FIR filter between them. \code - from gnuradio import gr, filter, analog + from gnuradio import gr, blocks, filter, analog class my_topblock(gr.top_block): def __init__(self): @@ -88,7 +88,7 @@ them. amp = 1 taps = filter.firdes.low_pass(1, 1, 0.1, 0.01) - self.src = analog.noise_source_c(gr.GR_GAUSSIAN, amp) + self.src = analog.noise_source_c(analog.GR_GAUSSIAN, amp) self.flt = filter.fir_filter_ccf(1, taps) self.snk = blocks.null_sink(gr.sizeof_gr_complex) |