Changeset 9739
- Timestamp:
- 10/07/08 18:14:46
- Files:
-
- gnuradio/trunk/grc/data/platforms/python/blocks/gr_probe_avg_mag_sqrd_x.xml (modified) (1 diff)
- gnuradio/trunk/grc/data/platforms/python/blocks/gr_probe_density_b.xml (modified) (1 diff)
- gnuradio/trunk/grc/data/platforms/python/blocks/gr_probe_mpsk_snr_c.xml (modified) (1 diff)
- gnuradio/trunk/grc/data/platforms/python/blocks/gr_probe_signal_f.xml (modified) (1 diff)
- gnuradio/trunk/grc/todo.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/trunk/grc/data/platforms/python/blocks/gr_probe_avg_mag_sqrd_x.xml
r9730 r9739 16 16 time.sleep($update_interval) 17 17 print "$(id) Level:", self.$(id).level() 18 threading.Thread(target=_$(id)_run).start()</make> 18 _$(id)_thread = threading.Thread(target=_$(id)_run) 19 _$(id)_thread.setDaemon(True) 20 _$(id)_thread.start()</make> 19 21 <callback>set_alpha($alpha)</callback> 20 22 <callback>set_threshold($threshold)</callback> gnuradio/trunk/grc/data/platforms/python/blocks/gr_probe_density_b.xml
r9730 r9739 16 16 time.sleep($update_interval) 17 17 print "$(id) Density:", self.$(id).density() 18 threading.Thread(target=_$(id)_run).start()</make> 18 _$(id)_thread = threading.Thread(target=_$(id)_run) 19 _$(id)_thread.setDaemon(True) 20 _$(id)_thread.start()</make> 19 21 <callback>set_alpha($alpha)</callback> 20 22 <param> gnuradio/trunk/grc/data/platforms/python/blocks/gr_probe_mpsk_snr_c.xml
r9730 r9739 18 18 print "$(id) Noise Variance:", self.$(id).noise_variance() 19 19 print "$(id) SNR:", self.$(id).snr() 20 threading.Thread(target=_$(id)_run).start()</make> 20 _$(id)_thread = threading.Thread(target=_$(id)_run) 21 _$(id)_thread.setDaemon(True) 22 _$(id)_thread.start()</make> 21 23 <callback>set_alpha($alpha)</callback> 22 24 <param> gnuradio/trunk/grc/data/platforms/python/blocks/gr_probe_signal_f.xml
r9730 r9739 16 16 time.sleep($update_interval) 17 17 print "$(id) Level:", self.$(id).level() 18 threading.Thread(target=_$(id)_run).start()</make> 18 _$(id)_thread = threading.Thread(target=_$(id)_run) 19 _$(id)_thread.setDaemon(True) 20 _$(id)_thread.start()</make> 19 21 <param> 20 22 <name>Update Interval (s)</name> gnuradio/trunk/grc/todo.txt
r9705 r9739 7 7 -throttle with sink only (source is nulled) 8 8 -simplify simple usrp 9 -probe blocks needs better polling mechanism 9 10 10 11 ################################################## … … 20 21 -search for blocks 21 22 -click and drag on whitespace to scroll 23 -expand preferences, allow for custome prefs, prefs dialog should infer structure 22 24 23 25 ################################################## … … 28 30 -add hier blocks to tree without restart? 29 31 -dont hide vlen controller when vlen > 1 32 -dont generate py files in cwd, add preference for user to choose 30 33 31 34 ################################################## … … 40 43 ################################################## 41 44 -notes on throttle 42 - how to add a block wrapper45 -notes on xdg-utils
