X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fconst.py;h=c478697f0d2e83494df607057d5bad8ef9e6f43c;hb=e37ae44488f2acbb965bd85a0639cf196c6a169d;hp=d66c479a418e98526fc30e493b16d7ac84cce928;hpb=17601b4d9891849640a8f11f1d39baf35f1a54ce;p=bertos.git diff --git a/wizard/const.py b/wizard/const.py index d66c479a..c478697f 100644 --- a/wizard/const.py +++ b/wizard/const.py @@ -15,6 +15,7 @@ CPU_DEF = { "DEFINITION_PATH": "", "TOOLCHAIN": "", "CPU_TAGS": [], + "CPU_FLAG_NAME": "", "CORE_CPU": "", "SCRIPT_DIR": "", "HW_DIR": "", @@ -22,17 +23,44 @@ 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") + CPU_DEFINITION = "*.cdef" GCC_NAME = "*gcc*" MODULE_CONFIGURATION = "cfg_*.h" -UI_LOCATION = "ui" \ No newline at end of file +UI_LOCATION = "ui" + +EXTENSION_FILTER = ( + ".c", + ".cpp", + ".cxx", + ".h", + ".c++", + ".mk", + "Makefile", +) + +MODULE_DEFINITION = { + "module_name": "module_name", + "module_configuration": "module_configuration", + "module_depends": "module_depends", + "module_harvard": "module_harvard", +} \ No newline at end of file