diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-07-07 12:20:09 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-07-07 12:20:09 -0400 |
commit | bbfc759914da80214fabc70fbbed1edaf39f9e4b (patch) | |
tree | 712eb6d1d95445bb6535534ce86d7faf1bfe6f90 /gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-curses | |
parent | 3f469513b94ac992138360caca7e1b53f82214ae (diff) | |
parent | 597b93798a804cde1783d6d2ab53b348d57c44cd (diff) |
Merge branch 'maint'
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-curses')
-rwxr-xr-x | gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-curses | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-curses b/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-curses index 1bee3b1a1e..f40c87a6d8 100755 --- a/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-curses +++ b/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-curses @@ -43,7 +43,7 @@ class modem_monitor(threading.Thread): def __del__(self): rx.close() - def run(self): + def run(self): while self.running: time.sleep(0.5) @@ -80,7 +80,7 @@ class modem_window(threading.Thread): self.ssel = 0 self.start() #self.updateGUI() - + # input loop while(self.running): self.getInput() @@ -239,7 +239,7 @@ class monitor_gui: self.updateGUI() except: pass - + def shutdown(self): curses.endwin() os._exit(0) |