X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fconst.py;h=37e9f93b26b2f98cb5e71affa3a325613f0072aa;hb=b92079668429c3ac41ae640d5b9ce10eaac14b0e;hp=86115373713e24b62c9d2c42e5fd129430f13ac1;hpb=6b50178e731ae6a8330bacb73fa584c78ccb906c;p=bertos.git diff --git a/wizard/const.py b/wizard/const.py index 86115373..37e9f93b 100644 --- a/wizard/const.py +++ b/wizard/const.py @@ -4,7 +4,7 @@ # Copyright 2008 Develer S.r.l. (http://www.develer.com/) # All rights reserved. # -# $Id:$ +# $Id$ # # Author: Lorenzo Berni # @@ -15,6 +15,7 @@ CPU_DEF = { "DEFINITION_PATH": "", "TOOLCHAIN": "", "CPU_TAGS": [], + "CPU_FLAG_NAME": "", "CORE_CPU": "", "SCRIPT_DIR": "", "HW_DIR": "", @@ -22,11 +23,19 @@ CPU_DEF = { "C_FLAGS": [], "CPPA_FLAGS" : [], "CPP_FLAGS" : [], + "CPPA_FLAGS": [], + "CXX_FLAGS": [], + "AS_FLAGS": [], + "AR_FLAGS": [], "LD_FLAGS" : [], "CPPA_SRC" : [], + "CXX_SRC": [], + "ASRC": [], + "C_SRC": [], "SUPPORTED_DRV" : [], "PC_SRC" : [], - "CPU_DESC" : [] + "CPU_DESC" : [], + "CPU_DEFAULT_FREQ": "1000000" } TOOLCHAIN_ITEMS = ("ld", "as") @@ -45,4 +54,17 @@ EXTENSION_FILTER = ( ".cxx", ".h", ".c++", -) \ No newline at end of file + ".mk", + "Makefile", +) + +IGNORE_LIST = ( + "*svn*", +) + +MODULE_DEFINITION = { + "module_name": "module_name", + "module_configuration": "module_configuration", + "module_depends": "module_depends", + "module_harvard": "module_harvard", +} \ No newline at end of file