Correct typo bug in user template file.
[bertos.git] / wizard / const.py
index fd72ee81565c2fca70a711802f2b12bfcf63230b..4f226328f9cc719167626617a0d7eef6612e5f34 100644 (file)
@@ -39,27 +39,14 @@ CPU_DEF = {
     "DEFINITION_PATH": "",
     "TOOLCHAIN": "",
     "CPU_TAGS": [],
-    "CPU_FLAG_NAME": "",
-    "CORE_CPU": "",
-    "SCRIPT_DIR": "",
-    "HW_DIR": "",
-    "DRV_DIR": "",
-    "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_DEFAULT_FREQ": "1000000"
+    "CPU_DEFAULT_FREQ": "1000000",
+    "GDB_INIT_SCRIPT": "",
 }
 
 TOOLCHAIN_ITEMS = ("ld", "as")
@@ -78,6 +65,8 @@ EXTENSION_FILTER = (
     ".cxx",
     ".h",
     ".c++",
+    ".ld",
+    ".S",
     ".mk",
     "Makefile",
 )
@@ -95,4 +84,6 @@ MODULE_DEFINITION = {
     "module_harvard": "module_harvard",
     "module_hw": "module_hw",
     "module_supports": "module_supports",
-}
\ No newline at end of file
+}
+
+MK_PARAM_ID = "MK_"