From 81df1e6c9801fb7b0d90c335f21fc62fec05b4e3 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 27 Jun 2014 20:43:35 +0300 Subject: [PATCH] bare-arm: Disable array module and even bytearray type. To squeeze few more hundreds of bytes. --- bare-arm/mpconfigport.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bare-arm/mpconfigport.h b/bare-arm/mpconfigport.h index 1587dca57a..604eacd1e9 100644 --- a/bare-arm/mpconfigport.h +++ b/bare-arm/mpconfigport.h @@ -12,10 +12,12 @@ #define MICROPY_HELPER_REPL (0) #define MICROPY_HELPER_LEXER_UNIX (0) #define MICROPY_ENABLE_SOURCE_LINE (0) +#define MICROPY_PY_BUILTINS_BYTEARRAY (0) #define MICROPY_PY_BUILTINS_FROZENSET (0) #define MICROPY_PY_BUILTINS_SET (0) #define MICROPY_PY_BUILTINS_SLICE (0) #define MICROPY_PY_BUILTINS_PROPERTY (0) +#define MICROPY_PY_ARRAY (0) #define MICROPY_PY_COLLECTIONS (0) #define MICROPY_PY_MATH (0) #define MICROPY_PY_CMATH (0)