From 70fb9ee99b5238c5f2163d93256226013442fa01 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 26 Dec 2015 16:30:37 +0200 Subject: [PATCH] esp8266: Enable config settings helpful for debugging. --- esp8266/mpconfigport.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index 59169c2165..aa79363fd1 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -8,7 +8,7 @@ #define MICROPY_EMIT_THUMB (0) #define MICROPY_EMIT_INLINE_THUMB (0) #define MICROPY_MEM_STATS (0) -#define MICROPY_DEBUG_PRINTERS (0) +#define MICROPY_DEBUG_PRINTERS (1) #define MICROPY_ENABLE_GC (1) #define MICROPY_STACK_CHECK (0) #define MICROPY_REPL_EVENT_DRIVEN (1) @@ -38,6 +38,7 @@ #define MICROPY_PY_UBINASCII (1) #define MICROPY_PY_UCTYPES (1) #define MICROPY_PY_UJSON (1) +#define MICROPY_PY_MICROPYTHON_MEM_INFO (1) #define MICROPY_CPYTHON_COMPAT (0) #define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ) #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)