Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / filter / generate_gr_fir_filter_XXX.py
1 #!/bin/env python
2 # -*- python -*-
3 #
4 # Copyright 2003,2004 Free Software Foundation, Inc.
5
6 # This file is part of GNU Radio
7
8 # GNU Radio is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
11 # any later version.
12
13 # GNU Radio is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Radio; see the file COPYING.  If not, write to
20 # the Free Software Foundation, Inc., 51 Franklin Street,
21 # Boston, MA 02110-1301, USA.
22
23
24 import re
25 from generate_utils import *
26
27 roots = ['gr_fir_filter_XXX']
28
29
30 def expand_h_cc_i (root, code3):
31     d = init_dict (root, code3)
32     expand_template (d, root + '.h.t')
33     expand_template (d, root + '.cc.t')
34     expand_template (d, root + '.i.t')
35
36 def init_dict (root, code3):
37     name = re.sub ('X+', code3, root)
38     d = standard_dict (name, code3)
39     d['FIR_TYPE'] = 'gr_fir_' + code3
40     return d
41
42 def generate ():
43     for r in roots:
44         for s in fir_signatures:
45             expand_h_cc_i (r, s)
46
47 if __name__ == '__main__':
48     generate ()
49