summaryrefslogtreecommitdiff
path: root/grc/data/platforms
diff options
context:
space:
mode:
Diffstat (limited to 'grc/data/platforms')
-rw-r--r--grc/data/platforms/python/blocks/options.xml26
-rw-r--r--grc/data/platforms/python/flow_graph.tmpl4
2 files changed, 26 insertions, 4 deletions
diff --git a/grc/data/platforms/python/blocks/options.xml b/grc/data/platforms/python/blocks/options.xml
index 3a73050ae..11e46bbe6 100644
--- a/grc/data/platforms/python/blocks/options.xml
+++ b/grc/data/platforms/python/blocks/options.xml
@@ -49,17 +49,14 @@ import wx
<option>
<name>WX GUI</name>
<key>wx_gui</key>
- <opt>hide_category:all</opt>
</option>
<option>
<name>No GUI</name>
<key>no_gui</key>
- <opt>hide_category:all</opt>
</option>
<option>
<name>Hier Block</name>
<key>hb</key>
- <opt>hide_category:</opt>
</option>
</param>
<param>
@@ -67,7 +64,28 @@ import wx
<key>category</key>
<value>Custom</value>
<type>string</type>
- <hide>$generate_options.hide_category</hide>
+ <hide>#if $generate_options.eval == 'hb' then 'none' else 'all'#</hide>
+ </param>
+ <param>
+ <name>Realtime Scheduling</name>
+ <key>realtime_scheduling</key>
+ <value></value>
+ <type>enum</type>
+ <hide>#if $generate_options.eval == 'hb'
+all#slurp
+#elif $realtime_scheduling.eval
+none#slurp
+#else
+part#slurp
+#end if</hide>
+ <option>
+ <name>Off</name>
+ <key></key>
+ </option>
+ <option>
+ <name>On</name>
+ <key>1</key>
+ </option>
</param>
<check>len($window_size) == 2</check>
<check>300 &lt;= $(window_size)[0] &lt;= 2048</check>
diff --git a/grc/data/platforms/python/flow_graph.tmpl b/grc/data/platforms/python/flow_graph.tmpl
index 4cd4411a7..a84b4eb0a 100644
--- a/grc/data/platforms/python/flow_graph.tmpl
+++ b/grc/data/platforms/python/flow_graph.tmpl
@@ -191,6 +191,10 @@ if __name__ == '__main__':
#end for
(options, args) = parser.parse_args()
#end if
+ #if $flow_graph.get_option('realtime_scheduling')
+ if gr.enable_realtime_scheduling() != gr.RT_OK:
+ print "Error: failed to enable realtime scheduling."
+ #end if
tb = $(class_name)($(', '.join($args)))
#if $generate_options == 'wx_gui'
tb.Run()