blob: fe8e56ec4aefe8630043c6c253a8bddfab00f186 (
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
|
<?xml version="1.0"?>
<!--
###################################################
##Constant Source: Custom wrapper
###################################################
-->
<block>
<name>Constant Source</name>
<key>const_source_x</key>
<import>from gnuradio import gr</import>
<make>gr.sig_source_$(type.fcn)(0, gr.GR_CONST_WAVE, 0, 0, $const)</make>
<callback>set_offset($const)</callback>
<param>
<name>Output Type</name>
<key>type</key>
<type>enum</type>
<option>
<name>Complex</name>
<key>complex</key>
<opt>fcn:c</opt>
<opt>const_type:complex</opt>
</option>
<option>
<name>Float</name>
<key>float</key>
<opt>fcn:f</opt>
<opt>const_type:real</opt>
</option>
<option>
<name>Int</name>
<key>int</key>
<opt>fcn:i</opt>
<opt>const_type:int</opt>
</option>
<option>
<name>Short</name>
<key>short</key>
<opt>fcn:s</opt>
<opt>const_type:int</opt>
</option>
</param>
<param>
<name>Constant</name>
<key>const</key>
<value>0</value>
<type>$type.const_type</type>
</param>
<source>
<name>out</name>
<type>$type</type>
</source>
</block>
|