git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@431 b431acfa-c32f-4a4a-93f1-934dc6c82436
39 lines
1.0 KiB
XML
39 lines
1.0 KiB
XML
<?xml version="1.0"?>
|
|
<block>
|
|
<name>add</name>
|
|
<key>jay_add</key>
|
|
<category>[jay]</category>
|
|
<import>import jay</import>
|
|
<make>jay.add()</make>
|
|
<!-- Make one 'param' node for every Parameter you want settable from the GUI.
|
|
Sub-nodes:
|
|
* name
|
|
* key (makes the value accessible as $keyname, e.g. in the make node)
|
|
* type -->
|
|
<param>
|
|
<name>...</name>
|
|
<key>...</key>
|
|
<type>...</type>
|
|
</param>
|
|
|
|
<!-- Make one 'sink' node per input. Sub-nodes:
|
|
* name (an identifier for the GUI)
|
|
* type
|
|
* vlen
|
|
* optional (set to 1 for optional inputs) -->
|
|
<sink>
|
|
<name>in</name>
|
|
<type><!-- e.g. int, float, complex, byte, short, xxx_vector, ...--></type>
|
|
</sink>
|
|
|
|
<!-- Make one 'source' node per output. Sub-nodes:
|
|
* name (an identifier for the GUI)
|
|
* type
|
|
* vlen
|
|
* optional (set to 1 for optional inputs) -->
|
|
<source>
|
|
<name>out</name>
|
|
<type><!-- e.g. int, float, complex, byte, short, xxx_vector, ...--></type>
|
|
</source>
|
|
</block>
|