diff options
author | Ben Reynwar <ben@reynwar.net> | 2012-04-30 09:20:59 -0700 |
---|---|---|
committer | Ben Reynwar <ben@reynwar.net> | 2012-04-30 09:20:59 -0700 |
commit | 2817cf14147d6da2e7ef051fbbbf8228fd1c07ba (patch) | |
tree | 0695ce3bcdbd75784198c28e6cb963c99ae5d0f6 /volk/gen/make_config_fixed.py | |
parent | e7f45e3c513242706a9e4aa36e99e33e79e66d4f (diff) | |
parent | d7ecbd12be995ad6db7a53a5d6dd3fcb205c07ea (diff) |
Merge branch 'master' of http://gnuradio.org/git/gnuradio
Diffstat (limited to 'volk/gen/make_config_fixed.py')
-rw-r--r-- | volk/gen/make_config_fixed.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/volk/gen/make_config_fixed.py b/volk/gen/make_config_fixed.py deleted file mode 100644 index 96f20b6b25..0000000000 --- a/volk/gen/make_config_fixed.py +++ /dev/null @@ -1,21 +0,0 @@ -from xml.dom import minidom - -def make_config_fixed(dom) : - tempstring = ""; - tempstring = tempstring +'/*this file is auto generated by volk_register.py*/'; - tempstring = tempstring + '\n#ifndef INCLUDED_VOLK_CONFIG_FIXED_H'; - tempstring = tempstring + '\n#define INCLUDED_VOLK_CONFIG_FIXED_H'; - tempstring = tempstring + '\n\n'; - enum_counter = 0; - for domarch in dom: - arch = str(domarch.attributes["name"].value); - tempstring = tempstring + '#define LV_' + arch.swapcase() + " " + str(enum_counter) + '\n'; - enum_counter = enum_counter + 1; - tempstring = tempstring + '\n\n'; - - tempstring = tempstring + "#endif /*INCLUDED_VOLK_CONFIG_FIXED*/\n" - - return tempstring; - - - |