diff options
author | Tom Rondeau | 2012-06-16 10:55:36 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-06-16 10:55:36 -0400 |
commit | d647fbbaa07554ad314c9eb2b5c1735b6265d13a (patch) | |
tree | 0fce319028b37495bef63b7740cd65d7a3378220 /gnuradio-core/src/python/build_utils.py | |
parent | 3cd0ea45255e2ca43931b2f067ec82fc92f4293e (diff) | |
download | gnuradio-d647fbbaa07554ad314c9eb2b5c1735b6265d13a.tar.gz gnuradio-d647fbbaa07554ad314c9eb2b5c1735b6265d13a.tar.bz2 gnuradio-d647fbbaa07554ad314c9eb2b5c1735b6265d13a.zip |
filter: adding freq_xlating_filter.
Includes QA and GRC.
Update to build_utils adds a FIR_TYPE for the type of filter and CFIR_TYPE for the type of filter where the taps are always complex (needed for freq_xlating_filter).
Diffstat (limited to 'gnuradio-core/src/python/build_utils.py')
-rw-r--r-- | gnuradio-core/src/python/build_utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnuradio-core/src/python/build_utils.py b/gnuradio-core/src/python/build_utils.py index 0898f46c4..e468b9bd1 100644 --- a/gnuradio-core/src/python/build_utils.py +++ b/gnuradio-core/src/python/build_utils.py @@ -214,6 +214,8 @@ def standard_impl_dict2 (name, code3, package): d['GUARD_NAME'] = 'INCLUDED_%s_%s_H' % (package.upper(), name.upper()) d['WARNING'] = 'WARNING: this file is machine generated. Edits will be overwritten' d['COPYRIGHT'] = copyright + d['FIR_TYPE'] = "fir_filter_" + code3 + d['CFIR_TYPE'] = "fir_filter_" + code3[0:2] + 'c' d['TYPE'] = i_type (code3) d['I_TYPE'] = i_type (code3) d['O_TYPE'] = o_type (code3) |