blob: f9ce1f6544ad04d30f6716b5928f4e55c74fb1d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<?xml version="1.0"?>
<!--
###################################################
##Vector Source
###################################################
-->
<block>
<name>Vector Insert</name>
<key>gr_vector_insert_x</key>
<import>from gnuradio import gr</import>
<make>gr.vector_insert_$(type.fcn)($vector, $period, $offset)</make>
<param>
<name>Output Type</name>
<key>type</key>
<type>enum</type>
<option>
<name>Byte</name>
<key>byte</key>
<opt>fcn:b</opt>
<opt>vec_type:int_vector</opt>
</option>
<option>
<name>Complex</name>
<key>complex</key>
<opt>fcn:c</opt>
<opt>vec_type:complex_vector</opt>
</option>
<option>
<name>Float</name>
<key>float</key>
<opt>fcn:f</opt>
<opt>vec_type:real_vector</opt>
</option>
<option>
<name>Int</name>
<key>int</key>
<opt>fcn:i</opt>
<opt>vec_type:int_vector</opt>
</option>
<option>
<name>Short</name>
<key>short</key>
<opt>fcn:s</opt>
<opt>vec_type:int_vector</opt>
</option>
</param>
<param>
<name>Vector</name>
<key>vector</key>
<value>0, 0, 0</value>
<type>$type.vec_type</type>
</param>
<param>
<name>Periodicity</name>
<key>period</key>
<value>100</value>
<type>int</type>
</param>
<param>
<name>Offset</name>
<key>offset</key>
<value>0</value>
<type>int</type>
</param>
<sink>
<name>in</name>
<type>$type</type>
</sink>
<source>
<name>out</name>
<type>$type</type>
</source>
<doc>
Periodicity, the length of the periodicity at which the vector should be inserted at the output.
(i.e. one vector for every N output items)
Offset sepcifies where in the cycle period we should begin at.
</doc>
</block>
|