summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-11-04 18:56:04 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-11-04 18:56:04 +0300
commit13f7a7b86b52e3db3ab5968503eae5cf57f13004 (patch)
tree7eaddd05eb75ea6baafca0f6d5af4e8656f27c57
parent9b345a9e482f28547e270b5c86ed3e022e56e237 (diff)
downloadmicropython-13f7a7b86b52e3db3ab5968503eae5cf57f13004.tar.gz
micropython-13f7a7b86b52e3db3ab5968503eae5cf57f13004.zip
zephyr/mpconfigport.h: Move less important params to the bottom.
-rw-r--r--zephyr/mpconfigport.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/zephyr/mpconfigport.h b/zephyr/mpconfigport.h
index 4d6f2b493d..059bd32dff 100644
--- a/zephyr/mpconfigport.h
+++ b/zephyr/mpconfigport.h
@@ -28,11 +28,6 @@
// Include Zephyr's autoconf.h, which should be made first by Zephyr makefiles
#include "autoconf.h"
-// Saving extra crumbs to make sure binary fits in 128K
-#define MICROPY_COMP_CONST_FOLDING (0)
-#define MICROPY_COMP_CONST (0)
-#define MICROPY_COMP_DOUBLE_TUPLE_ASSIGN (0)
-
#define MICROPY_STACK_CHECK (1)
#define MICROPY_ENABLE_GC (1)
#define MICROPY_HELPER_REPL (1)
@@ -63,6 +58,11 @@
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
#define MICROPY_PY_BUILTINS_COMPLEX (0)
+// Saving extra crumbs to make sure binary fits in 128K
+#define MICROPY_COMP_CONST_FOLDING (0)
+#define MICROPY_COMP_CONST (0)
+#define MICROPY_COMP_DOUBLE_TUPLE_ASSIGN (0)
+
#ifdef CONFIG_BOARD
#define MICROPY_HW_BOARD_NAME "zephyr-" CONFIG_BOARD
#else