Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Allow variable vlen in GRC generated hier blocks
  • Loading branch information
Sebastian Koslowski committed Oct 14, 2013
1 parent d75a0ed commit a79d235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grc/python/FlowGraph.py
Expand Up @@ -82,7 +82,7 @@ def get_io_signaturev(self, direction):
return [{
'label': str(pad.get_param('label').get_evaluated()),
'type': str(pad.get_param('type').get_evaluated()),
'vlen': str(pad.get_param('vlen').get_evaluated()),
'vlen': str(pad.get_param('vlen').get_value()),
'size': pad.get_param('type').get_opt('size'),
'optional': bool(pad.get_param('optional').get_evaluated()),
} for pad in expanded_pads]
Expand Down

0 comments on commit a79d235

Please sign in to comment.