diff options
Diffstat (limited to 'gnuradio-examples/python/hier/sounder/usrp_sounder_tx.py')
-rwxr-xr-x | gnuradio-examples/python/hier/sounder/usrp_sounder_tx.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnuradio-examples/python/hier/sounder/usrp_sounder_tx.py b/gnuradio-examples/python/hier/sounder/usrp_sounder_tx.py index e7fc3f60b..ae531d510 100755 --- a/gnuradio-examples/python/hier/sounder/usrp_sounder_tx.py +++ b/gnuradio-examples/python/hier/sounder/usrp_sounder_tx.py @@ -99,13 +99,9 @@ def main(): options.verbose, options.degree, options.chip_rate, options.amplitude) - # Create an instance of a runtime, passing it the top block - # to process - runtime = gr.runtime(top_block) - try: # Run forever - runtime.run() + top_block.run() except KeyboardInterrupt: # Ctrl-C exits pass |