diff options
Diffstat (limited to 'grc/python/flow_graph.tmpl')
-rw-r--r-- | grc/python/flow_graph.tmpl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/grc/python/flow_graph.tmpl b/grc/python/flow_graph.tmpl index e1b091612b..52582384aa 100644 --- a/grc/python/flow_graph.tmpl +++ b/grc/python/flow_graph.tmpl @@ -161,6 +161,9 @@ gr.io_signaturev($(len($io_sigs)), $(len($io_sigs)), [$(', '.join($size_strs))]) $indent($blk.get_make()) #else self.$blk.get_id() = $indent($blk.get_make()) + #if $blk.has_param('alias') and $blk.get_param('alias').get_evaluated() + (self.$blk.get_id()).set_block_alias("$blk.get_param('alias').get_evaluated()") + #end if #if $blk.has_param('affinity') and $blk.get_param('affinity').get_evaluated() (self.$blk.get_id()).set_processor_affinity($blk.get_param('affinity').get_evaluated()) #end if @@ -329,7 +332,11 @@ if __name__ == '__main__': tb.wait() qapp.connect(qapp, Qt.SIGNAL("aboutToQuit()"), quitting) #for $m in $monitors - (tb.$m.get_id()).start() + if $m.has_param('en'): + if $m.get_param('en').get_value(): + (tb.$m.get_id()).start() + else: + sys.stderr.write("Monitor '{0}' does not have an enable ('en') parameter.".format("tb.$m.get_id()")) #end for qapp.exec_() tb = None #to clean up Qt widgets @@ -360,4 +367,3 @@ if __name__ == '__main__': tb.wait() #end if #end if - |