diff options
author | Tom Rondeau | 2012-10-02 14:52:07 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-10-03 12:26:17 -0400 |
commit | 1e528816fd70f3a61d7f00a370cb056f03ceb6a7 (patch) | |
tree | 7281e03578456a44f2abb5c3ff1becadccb0409c /docs/doxygen | |
parent | 5fcb7ebd473709fd9e4e99d542f21d3cee5aaf05 (diff) | |
download | gnuradio-1e528816fd70f3a61d7f00a370cb056f03ceb6a7.tar.gz gnuradio-1e528816fd70f3a61d7f00a370cb056f03ceb6a7.tar.bz2 gnuradio-1e528816fd70f3a61d7f00a370cb056f03ceb6a7.zip |
core: fixed swig file for exporting max/min buffer sizes with port first.
Diffstat (limited to 'docs/doxygen')
-rw-r--r-- | docs/doxygen/other/main_page.dox | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/doxygen/other/main_page.dox b/docs/doxygen/other/main_page.dox index f2ab2a436..282682464 100644 --- a/docs/doxygen/other/main_page.dox +++ b/docs/doxygen/other/main_page.dox @@ -152,7 +152,7 @@ To set the output buffer size of a block, you simply call: \code tb.blk0.set_max_output_buffer(2000) - tb.blk1.set_max_output_buffer(2000,1) + tb.blk1.set_max_output_buffer(1, 2000) tb.start() print tb.blk1.max_output_buffer(0) print tb.blk1.max_output_buffer(1) |