- finalize bit packer

git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@424 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-02-10 16:45:35 +00:00
parent 28681c4973
commit 844bb3c769
7 changed files with 52 additions and 21 deletions
+1 -18
View File
@@ -5,11 +5,6 @@
<category>[JAY]</category>
<import>import jay</import>
<make>jay.bit_packer($numBitsIn, $numBitsOut, $endianess)</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>Number of input bits</name>
<key>numBitsIn</key>
@@ -17,7 +12,7 @@
</param>
<param>
<name>Number of output bits</name>
<key>numBitsOut,</key>
<key>numBitsOut</key>
<type>int</type>
</param>
<param>
@@ -25,22 +20,10 @@
<key>endianess</key>
<type>int</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>int</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>int</type>