while True:
time.sleep($update_interval)
print "$(id) Level:", self.$(id).level()
-threading.Thread(target=_$(id)_run).start()</make>
+_$(id)_thread = threading.Thread(target=_$(id)_run)
+_$(id)_thread.setDaemon(True)
+_$(id)_thread.start()</make>
<callback>set_alpha($alpha)</callback>
<callback>set_threshold($threshold)</callback>
<param>
while True:
time.sleep($update_interval)
print "$(id) Density:", self.$(id).density()
-threading.Thread(target=_$(id)_run).start()</make>
+_$(id)_thread = threading.Thread(target=_$(id)_run)
+_$(id)_thread.setDaemon(True)
+_$(id)_thread.start()</make>
<callback>set_alpha($alpha)</callback>
<param>
<name>Alpha</name>
print "$(id) Signal Mean:", self.$(id).signal_mean()
print "$(id) Noise Variance:", self.$(id).noise_variance()
print "$(id) SNR:", self.$(id).snr()
-threading.Thread(target=_$(id)_run).start()</make>
+_$(id)_thread = threading.Thread(target=_$(id)_run)
+_$(id)_thread.setDaemon(True)
+_$(id)_thread.start()</make>
<callback>set_alpha($alpha)</callback>
<param>
<name>Alpha</name>
while True:
time.sleep($update_interval)
print "$(id) Level:", self.$(id).level()
-threading.Thread(target=_$(id)_run).start()</make>
+_$(id)_thread = threading.Thread(target=_$(id)_run)
+_$(id)_thread.setDaemon(True)
+_$(id)_thread.start()</make>
<param>
<name>Update Interval (s)</name>
<key>update_interval</key>
-controlled step block
-throttle with sink only (source is nulled)
-simplify simple usrp
+-probe blocks needs better polling mechanism
##################################################
# Features
-zoom in/out (cairo vector graphics) (use scroll wheel as control)
-search for blocks
-click and drag on whitespace to scroll
+-expand preferences, allow for custome prefs, prefs dialog should infer structure
##################################################
# Problems
-auto clean hier library
-add hier blocks to tree without restart?
-dont hide vlen controller when vlen > 1
+-dont generate py files in cwd, add preference for user to choose
##################################################
# External
# Documentation
##################################################
-notes on throttle
--how to add a block wrapper
+-notes on xdg-utils