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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
#!/usr/bin/env python
"""
Copyright 2010 Free Software Foundation, Inc.
This file is part of GNU Radio
GNU Radio Companion is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
GNU Radio Companion is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
"""
MAIN_TMPL = """\
<?xml version="1.0"?>
<block>
<name>UHD MIMO $sourk.title()</name>
<key>uhd_mimo_$(sourk)</key>
<category>UHD</category>
<import>from gnuradio import uhd</import>
<make>uhd.mimo_$(sourk)(\$nchan, \$args, uhd.io_type_t.\$type.type)
self.\$(id).set_samp_rate_all(\$samp_rate)
#for $n in range($max_nchan)
\#if \$nchan() > $n
self.\$(id).set_subdev_spec($n, \$sd_spec$(n))
self.\$(id).set_center_freq($n, \$center_freq$(n))
self.\$(id).set_gain($n, \$gain$(n))
\#if \$ant$(n)()
self.\$(id).set_antenna($n, \$ant$(n))
\#end if
\#end if
#end for
</make>
<callback>set_samp_rate(\$samp_rate)</callback>
#for $n in range($max_nchan)
<callback>set_center_freq($n, \$center_freq$(n))</callback>
<callback>set_gain($n, \$gain$(n))</callback>
<callback>set_antenna($n, \$ant$(n))</callback>
#end for
<param>
<name>Input Type</name>
<key>type</key>
<type>enum</type>
<option>
<name>Complex</name>
<key>complex</key>
<opt>type:COMPLEX_FLOAT32</opt>
<opt>vlen:1</opt>
</option>
<option>
<name>Short</name>
<key>short</key>
<opt>type:COMPLEX_INT16</opt>
<opt>vlen:2</opt>
</option>
</param>
<param>
<name>Num Channels</name>
<key>nchan</key>
<value>2</value>
<type>int</type>
#for $n in range(2, $max_nchan+1)
<option>
<name>$n Channels</name>
<key>$n</key>
</option>
#end for
</param>
<param>
<name>Args</name>
<key>args</key>
<value>addr=192.168.10.2 192.168.20.2</value>
<type>string</type>
</param>
<param>
<name>Samp Rate (Sps)</name>
<key>samp_rate</key>
<value>samp_rate</value>
<type>real</type>
</param>
$params
<check>$max_nchan >= \$nchan</check>
<check>\$nchan >= 0</check>
<$sourk>
<name>$direction</name>
<type>\$type</type>
<vlen>\$type.vlen</vlen>
<nports>\$nchan</nports>
</$sourk>
<doc>
The UHD $sourk.title() Block:
Args:
Args is a delimited string used to locate UHD devices on your system. \\
If left blank, the first UHD device found will be used. \\
Used args to specify a specfic device. \\
USRP2 Example: addr=192.168.10.2
Sample rate:
The sample rate is the number of samples per second input by this block. \\
The UHD device driver will try its best to match the requested sample rate. \\
If the requested rate is not possible, the UHD block will print an error at runtime.
Antenna:
For subdevices/daughterboards with only one antenna, this may be left blank. \\
Otherwise, the user should specify one of the possible antenna choices. \\
See the daughterboard application notes for the possible antenna choices.
</doc>
</block>
"""
PARAMS_TMPL = """
<param>
<name>Ch$(n): Subdev Spec</name>
<key>sd_spec$(n)</key>
<value></value>
<type>string</type>
<hide>
\#if not \$nchan() > $n
all
\#elif \$sd_spec$(n)()
none
\#else
part
\#end if
</hide>
</param>
<param>
<name>Ch$(n): Center Freq (Hz)</name>
<key>center_freq$(n)</key>
<value>0</value>
<type>real</type>
<hide>\#if \$nchan() > $n then 'none' else 'all'#</hide>
</param>
<param>
<name>Ch$(n): Gain (dB)</name>
<key>gain$(n)</key>
<value>0</value>
<type>real</type>
<hide>\#if \$nchan() > $n then 'none' else 'all'#</hide>
</param>
<param>
<name>Ch$(n): Antenna</name>
<key>ant$(n)</key>
<value></value>
<type>string</type>
<hide>
\#if not \$nchan() > $n
all
\#elif \$ant$(n)()
none
\#else
part
\#end if
</hide>
</param>
"""
def parse_tmpl(_tmpl, **kwargs):
from Cheetah import Template
return str(Template.Template(_tmpl, kwargs))
max_num_channels = 8
if __name__ == '__main__':
import sys
for file in sys.argv[1:]:
if 'source' in file:
sourk = 'source'
direction = 'out'
elif 'sink' in file:
sourk = 'sink'
direction = 'in'
else: raise Exception, 'is %s a source or sink?'%file
params = ''.join([parse_tmpl(PARAMS_TMPL, n=n) for n in range(max_num_channels)])
open(file, 'w').write(parse_tmpl(MAIN_TMPL,
max_nchan=max_num_channels,
params=params,
sourk=sourk,
direction=direction,
))
|