From ec7bdb4c93c8046b7d80bdad9b151c990946b181 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Wed, 14 Apr 2010 12:31:19 -0700 Subject: added to uhd grc files, also removed warning for grc generator with uhd blocks --- grc/python/Generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grc/python') diff --git a/grc/python/Generator.py b/grc/python/Generator.py index acd98ef84..d53802bef 100644 --- a/grc/python/Generator.py +++ b/grc/python/Generator.py @@ -58,7 +58,7 @@ class Generator(object): def write(self): #do throttle warning all_keys = ' '.join(map(lambda b: b.get_key(), self._flow_graph.get_enabled_blocks())) - if ('usrp' not in all_keys) and ('audio' not in all_keys) and ('throttle' not in all_keys) and self._generate_options != 'hb': + if ('usrp' not in all_keys) and ('uhd' not in all_keys) and ('audio' not in all_keys) and ('throttle' not in all_keys) and self._generate_options != 'hb': Messages.send_warning('''\ This flow graph may not have flow control: no audio or usrp blocks found. \ Add a Misc->Throttle block to your flow graph to avoid CPU congestion.''') -- cgit