X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fconst.py;h=454a76e44d3eb36362b3ca005d95ce00d435fde9;hb=1336f8f13e1b7f28ff3509f2caf12f0071802a26;hp=d66c479a418e98526fc30e493b16d7ac84cce928;hpb=17601b4d9891849640a8f11f1d39baf35f1a54ce;p=bertos.git diff --git a/wizard/const.py b/wizard/const.py index d66c479a..454a76e4 100644 --- a/wizard/const.py +++ b/wizard/const.py @@ -29,10 +29,29 @@ CPU_DEF = { "CPU_DESC" : [] } +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