diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-21 14:41:14 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-21 14:41:14 -0700 |
commit | 73f138eca0dede47a69ab34b1fb1abab76e6bf38 (patch) | |
tree | becf0e79c3d9648661398e0a502fab6efb4c72c9 /docs/doxygen | |
parent | a9ea6885d7451e21a4cbb937b7340186ddeb004c (diff) | |
parent | 7b3f9975dcbba94b095d8e61b6b4793138dbf647 (diff) |
Merge branch 'maint'
Diffstat (limited to 'docs/doxygen')
-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) |