summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/python/gnuradio/gr
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2012-08-20 21:54:25 -0400
committerTom Rondeau <trondeau@vt.edu>2012-08-20 21:54:25 -0400
commitd16a9e334129c72dc1bb44fc8c1e4307f50e4e93 (patch)
tree36f9ebcbba10556cf4bd7584dfe30653cf904f60 /gnuradio-core/src/python/gnuradio/gr
parent372c129f932236fb0bacb83a8c8994171eb4d018 (diff)
core: fixed default upper-limit on noutput_items to make sure we don't normally hit it.
Diffstat (limited to 'gnuradio-core/src/python/gnuradio/gr')
-rw-r--r--gnuradio-core/src/python/gnuradio/gr/top_block.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-core/src/python/gnuradio/gr/top_block.py b/gnuradio-core/src/python/gnuradio/gr/top_block.py
index 43af8073b6..ec9e844f6a 100644
--- a/gnuradio-core/src/python/gnuradio/gr/top_block.py
+++ b/gnuradio-core/src/python/gnuradio/gr/top_block.py
@@ -93,13 +93,13 @@ class top_block(object):
raise RuntimeError("top_block: invalid state--did you forget to call gr.top_block.__init__ in a derived class?")
return getattr(self._tb, name)
- def start(self, max_noutput_items=100000):
+ def start(self, max_noutput_items=10000000):
self._tb.start(max_noutput_items)
def stop(self):
self._tb.stop()
- def run(self, max_noutput_items=100000):
+ def run(self, max_noutput_items=10000000):
self.start(max_noutput_items)
self.wait()