Add a file containing the wizard constants
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 19 Dec 2008 11:16:43 +0000 (11:16 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 19 Dec 2008 11:16:43 +0000 (11:16 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2101 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/const.py [new file with mode: 0644]

diff --git a/wizard/const.py b/wizard/const.py
new file mode 100644 (file)
index 0000000..4152cb7
--- /dev/null
@@ -0,0 +1,27 @@
+#!/usr/bin/env python
+# encoding: utf-8
+#
+# Copyright 2008 Develer S.r.l. (http://www.develer.com/)
+# All rights reserved.
+#
+# $Id:$
+#
+# Author: Lorenzo Berni <duplo@develer.com>
+#
+
+CPU_DEF = {
+    "TOOLCHAIN": [],
+    "CORE_CPU": "",
+    "SCRIPT_DIR": "",
+    "HW_DIR": "",
+    "DRV_DIR": "",
+    "CPPA_FLAGS" : [],
+    "CPP_FLAGS" : [],
+    "LD_FLAGS" : [],
+    "CPPA_SRC" : [],
+    "SUPPORTED_DRV" : [],
+    "PC_SRC" : [],
+    "CPU_DESC" : []
+}
+
+CPU_DEFINITION = "cdef"
\ No newline at end of file